.contact-form-container {
    background-color: rgb(246, 246, 246, 0.8);
    padding: 12px;
}

.contact-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-blue);
    color: white;
    width: 52px;
    height: 52px;
    border-radius: 50%;
}

.contact-icon {
    font-size: 25px;
}

.wa-contact-icon {
    font-size: 29px;
    padding-left: 2px;
    padding-bottom: 2px;
}

@media (max-width: 575px) {
    .contact-icon-wrapper {
        width: 44px;
        height: 44px;
    }
    .contact-icon {
        font-size: 20px;
    }
    .wa-contact-icon {
        font-size: 26px;
        padding-bottom: 1px;
    }
}

.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-text-wrapper {
    margin-top: 8px;
}

.opening-hours-table {
    border-collapse: collapse; /* Ensure borders don't double */
    width: 70%;
    margin: 0 auto;
}

@media (max-width: 475px) {
    .opening-hours-table {
        width: 100%;
    }
}

.opening-hours-table th, 
.opening-hours-table td {
    border: none;
    padding: 5px;
    line-height: 1;
    text-align: center;
}

.opening-hours-table tr td:first-child {
    width: 40%; /* Set width for the first column (Days of the Week) */
}

.opening-hours-table tr td:last-child {
    width: 60%; /* Set width for the second column (Opening Times) */
}

.opening-hours-table th {
    border-right: 1px solid #dee2e6;
}

.opening-hours-table tr td:not(:first-child) {
    border-left: 1px solid #dee2e6; /* Add border only for the second column */
}

/* Center contact form submit button within container */
.jGxUlg {
    justify-content: center !important;
}