.check-dates-banner-container {
    width: 100%;
    height: 100%; /* Desktop height */
    background-color: #12808F;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 56px;
    padding: 7px;
}

.check-dates-banner-text-box {
    width: 1080px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 32px;
}

.check-dates-banner-delivery-text {
    text-align: center;
    color: white;
    font-size: 16px;
    font-family: 'Proxima Nova', sans-serif;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.43px;
    word-wrap: break-word;
}

.check-dates-banner-button {
    width: 240px;
    height: 45px;
    padding: 11px 3px;
    border: 1px solid white;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background-color: transparent;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.check-dates-banner-button-text {
    text-align: center;
    color: white;
    font-size: .938em;
    font-family: 'proxima-nova-condensed', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .3em;
    word-wrap: break-word;
    text-decoration: none; /* Ensure no underline on hover */
}

/* Hover state for the button */
.check-dates-banner-button:hover {
    background-color: white;
    text-decoration: none; /* Ensure no underline on hover */
}

.check-dates-banner-button:hover .check-dates-banner-button-text {
    color: #333333;
    text-decoration: none; /* Ensure no underline on hover */
}

/* Mobile styles */
@media (max-width: 768px) {
    .check-dates-banner-container {
        height: 163px; /* Mobile height */
        padding: 32px 22px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 32px;
    }

    .check-dates-banner-text-box {
        width: 100%; /* Stretch full width */
        display: flex;
        justify-content: center; /* Center horizontally */
        align-items: center;
    }

    .check-dates-banner-delivery-text {
        text-align: center;
        font-size: 16px;
        line-height: 22px;
        letter-spacing: 0.43px;
    }

    .check-dates-banner-button {
        width: 240px;
        height: 45px;
        padding: 11px 3px;
        border: 1px solid white;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
    }
}
