<style>
.nav-back-container {
    width: 100%;
    max-width: 1200px; /* Matches your gallery alignment */
    margin: 40px auto 20px auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.btn-back-home {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%; /* Forces full width */
    padding: 14px 20px;
    background-color: #15155C; /* oakville club blue */
    color: #fff;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 500;
    border: 1px solid #dddddd;
    border-radius: 6px;
    box-sizing: border-box;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-back-home:hover {
    background-color: #333333; /* Flips to dark slate on hover */
    color: #ffffff;
    border-color: #333333;
}

.btn-icon {
    margin-right: 8px;
    font-size: 18px;
}
</style>