/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

.text-blue {
    color: #0071b5;
}
.order-summary-container {
    background-color: #0071b5;
    padding: 20px;
    text-align: center;
    border-radius: 15px;
    color: #fff;
}

.order-summary-container h4,
.order-summary-container .text-muted {
    color: #fff !important;
}

.order-summary-container #summaryTotalPrice {
    font-size: 26px;
}

.summary-section {
    padding-top: 13px;
}

.order-summary-container .text-muted.small {
    font-size: 13px;
    color: #e0e0e0 !important;
}
/* Order Form Styles */
.order-form {
    width: 100%;
    margin: 0 auto;
    max-width: 800px;
}

.order-section,
.order-summary {
    margin-bottom: 3rem;
}

.order-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: #012e40;
}

.order-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.order-card-purple {
    border: 3px solid #2196F3;
}

.section-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #012e40;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-title-bar {
    width: 4px;
    height: 2rem;
    background: #012e40;
    border-radius: 2px;
}

.section-title-bar-blue {
    background: #2196F3;
}

.section-title-bar-green {
    background: #2196F3;
}

.section-subtitle {
    font-size: 1.2rem;
    font-weight: bold;
    color: #012e40;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.optional {
    font-size: 1rem;
    font-weight: normal;
    color: #666;
}

/* Service Options */
.service-options {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.service-option {
    flex: 1;
    min-width: 150px;
    background: #fff;
    border: 2px solid #e3e7e9;
    border-radius: 0.5rem;
    padding: 1.5rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.service-option:hover {
    border-color: #2196F3;
}

.service-option.active {
    background: #2196F3;
    border-color: #2196F3;
    color: #fff;
}

.service-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.service-time {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.service-unit {
    font-size: 0.9rem;
}

.service-info {
    background: #f9f9f9;
    border-radius: 0.5rem;
    padding: 1.5rem;
    position: relative;
}

.info-icon {
    position: absolute;
    left: 1.5rem;
    top: 1.5rem;
    width: 2rem;
    height: 2rem;
    background: #2196F3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.info-list {
    list-style: none;
    padding: 0;
    padding-left: 3.5rem;
    margin: 0;
}

.info-list li {
    margin-bottom: 0.5rem;
    color: #586b75;
}

.info-note {
    color: #2196F3;
    margin-top: 1rem;
    font-weight: bold;
    font-size: 0.9rem;
    margin-left: 3.5rem;
}

/* Contact Form */
.form-col-12 {
    width: 100%;
    padding: 0.5rem 0;
}

/* Address Form */
.map-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: #2196F3;
}

.map-link i {
    color: #2196F3;
}

.link-blue {
    color: #2196F3;
    text-decoration: none;
    font-weight: 500;
}

.link-blue:hover {
    text-decoration: underline;
}

.btn-order {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    background: #2196F3;
    border: none;
    border-radius: 0.5rem;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-order:hover {
    background: #7b1fa2;
}

.btn-large {
    padding: 1.5rem 2rem;
    font-size: 1.3rem;
}

/* Additional Options Grid */
.additional-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.additional-option {
    background: #fff;
    border: 2px solid #e3e7e9;
    border-radius: 0.5rem;
    padding: 1.5rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.additional-option:hover {
    border-color: #2196F3;
}

input[type="checkbox"]:checked + .additional-option {
    background: #2196F3;
    border-color: #2196F3;
    color: #fff;
}

.option-icon {
    font-size: 2rem;
    margin-bottom: 1.3rem;
}

.option-text {
    font-size: 0.9rem;
    font-weight: 500;
}

.staff-notes {
    margin-top: 2rem;
}

.staff-notes textarea {
    width: 100%;
    min-height: 120px;
    padding: 1rem;
    border: 2px solid #e3e7e9;
    border-radius: 0.5rem;
    font-family: inherit;
    resize: vertical;
}

/* Date and Time Selection */
.date-time-section {
    margin-top: 1rem;
}

.date-container {
    display: flex;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.date-container-gray {
    background: #f9f9f9;
    border: 2px solid #e3e7e9;
}

.date-container-green {
    background: #f9f9f9;
    border: 2px solid #2196F3;
}

.date-btn {
    flex: 1;
    min-width: 80px;
    padding: 1rem;
    text-align: center;
    background: #fff;
    border: 2px solid #e3e7e9;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.date-btn:hover {
    border-color: #2196F3;
}

input[type="radio"]:checked + .date-btn {
    background: #2196F3;
    border-color: #2196F3;
    color: #fff;
}

input[type="radio"]:checked + .date-btn.active {
    background: #2196F3;
    border-color: #2196F3;
}

.time-container {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.time-container-blue {
    border: 2px solid #2196F3;
}

.time-container-green {
    border: 2px solid #2196F3;
}

.time-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.time-btn {
    padding: 1rem 0.5rem;
    text-align: center;
    background: #fff;
    border: 2px solid #e3e7e9;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
    line-height: 1.4;
}

.time-btn:hover {
    border-color: #2196F3;
}

input[type="radio"]:checked + .time-btn {
    background: #2196F3;
    border-color: #2196F3;
    color: #fff;
}

input[type="radio"]:checked + .time-btn.active {
    background: #2196F3;
    border-color: #2196F3;
}

/* Service Type Grid */
.service-type-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.service-type-option {
    background: #fff;
    border: 2px solid #e3e7e9;
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.service-type-grid input[type="radio"] {
    display: none;
}

.service-type-option:hover {
    border-color: #2196F3;
}

.service-type-grid input[type="radio"]:checked + .service-type-option,
.service-type-option.active {
    background: #2196F3;
    border-color: #2196F3;
    color: #fff;
}

.service-type-check {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    width: 1.5rem;
    height: 1.5rem;
    border: 2px solid #666;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-type-grid input[type="radio"]:checked + .service-type-option .service-type-check,
.service-type-option.active .service-type-check {
    background: #fff;
    border-color: #fff;
}

.service-type-grid input[type="radio"]:checked + .service-type-option .service-type-check::after,
.service-type-option.active .service-type-check::after {
    content: "✓";
    color: #2196F3;
    font-weight: bold;
}

.service-type-icon {
    font-size: 3rem;
    margin: 1rem 0;
}

.service-type-text {
    font-size: 1rem;
    font-weight: 500;
}

#order-thankyou-section h5 {
    font-size: 1.2rem ;
    margin-top: 20px;
    margin-bottom: 0px;
}

#order-thankyou-section h5>i {
    display: contents;
}

/* Responsive */
@media (max-width: 768px) {
    .service-options {
        flex-direction: column;
    }
    
    .additional-options-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .time-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-type-grid {
        grid-template-columns: 1fr;
    }
    
    .date-container {
        flex-direction: column;
    }
    
    .date-btn {
        width: 100%;
    }
    
    /* Icon Boxes Mobile Layout - Icon Left, Text Right */
    .mad-icon-boxes.item-col-4 .mad-icon-box {
        display: flex;
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 1.5rem;
    }
    
    .mad-icon-boxes.item-col-4 .mad-icon-box .mad-icon-box-icon {
        flex-shrink: 0;
        margin-bottom: 0;
        min-width: 80px;
    }
    
    .mad-icon-boxes.item-col-4 .mad-icon-box .mad-icon-box-icon img {
        width: 80px;
        height: auto;
    }
    
    .mad-icon-boxes.item-col-4 .mad-icon-box .mad-icon-box-content {
        flex: 1;
        min-width: 0;
    }
    
    .mad-icon-boxes.item-col-4 .mad-icon-box .mad-icon-box-title {
        font-size: 1.125rem;
        line-height: 1.5rem;
        margin-bottom: 0rem;
    }
    
    
    .mad-icon-boxes.item-col-4 .mad-icon-box .mad-read-more {
        font-size: 0.9rem;
        margin-top: 1rem;
    }
}

/* แก้ไขปัญหาแผนที่กดไม่ได้ - ปรับ z-index และ pointer-events */
.mad-gmap {
    z-index: 1 !important;
    position: relative;
}

.g-map-wrap {
    position: relative;
}

.g-map-wrap .g-map-section {
    pointer-events: auto;
    z-index: 10;
}

.g-map-wrap .g-map-section form,
.g-map-wrap .g-map-section input,
.g-map-wrap .g-map-section button {
    pointer-events: auto;
    margin-bottom: 0px;
}

/* ตรวจสอบว่ามี element อื่นบังแผนที่หรือไม่ */
.g-map-wrap::before,
.g-map-wrap::after {
    pointer-events: none !important;
}

/* ตรวจสอบ overlay ที่อาจบังแผนที่ */
.g-map-wrap > *:not(.mad-gmap):not(.g-map-section) {
    pointer-events: none;
}

.g-map-wrap .mad-gmap {
    pointer-events: auto !important;
}

.mad-branch-page .g-map-section {
    position: relative;
    box-shadow: none;
    width: 100%;
    top: 0;
    right: 0;
    text-align: center;
    background: transparent;
    padding: 0;
    margin-bottom: 30px;
}

.mad-branch-page .g-map-section form {
    max-width: 300px;
    display: inline-block;
    vertical-align: bottom;
}

.mad-branch-page .mad-gmap {
    width: 90%;
    margin: 0 auto;
    height: 600px;
}

/* ปรับความสูงแผนที่ใน mobile */
@media only screen and (max-width: 768px) {
    .mad-gmap {
        height: 500px;
    }
    .mad-branch-page .mad-gmap {
        height: 280px;
    }
}

@media only screen and (max-width: 480px) {
    .mad-gmap {
        height: 600px;
    }
    .mad-branch-page .mad-gmap {
        height: 280px;
    }
    
    #mad-header .mad-logo {
        height: 45px;
    }

    #mad-header .mad-logo img {
        height: 115px;
    }

    #mad-header .btn {
        padding: 0.4rem 0.3rem 0.4rem 1.2em;
        font-size: 0.8em;
        margin: 0px 10px;
        line-height: 1.2em;
    }

    .mad-header:not(.header-2) [class*="mad-header-section--sticky"] {
        padding: 0;
    }

    .skywash-menu-trigger {
        height: 3.3rem;
    }

    .skywash-menu-trigger__bars, .skywash-menu-trigger__bars::before, .skywash-menu-trigger__bars::after {
        height: 3px;
    }

    .skywash-menu-trigger__bars::before {
        top: -8px;
    }

    .skywash-menu-trigger__bars::after {
        top: 8px;
    }
    .skywash-menu-trigger {
        width: 1.4rem;
    }
    .skywash-menu-trigger__bars, .skywash-menu-trigger__bars::before, .skywash-menu-trigger__bars::after {
        width: 1.4rem;
    }
}

/* Branch List Section */
.branch-list-section {
    padding: 3rem 0;
    background: #fff;
}

.branch-list {
    max-width: 1200px;
    margin: 0 auto;
}

.branch-item {
    display: flex;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e0e0e0;
    gap: 1.5rem;
}

.branch-item:last-child {
    border-bottom: none;
}

.branch-marker {
    flex-shrink: 0;
}

.marker-icon {
    width: 50px;
    height: 50px;
    background: #0071b5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.marker-icon::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 12px solid #0071b5;
}

.marker-number {
    color: #fff;
    font-size: 1.5rem;
    z-index: 1;
    position: relative;
}

.branch-image {
    flex-shrink: 0;
    width: 100%;
    max-width: 300px;
    overflow: hidden;
    text-align: center;
    margin: 0 auto;
}

.branch-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.branch-content {
    flex: 1;
    min-width: 0;
}

.branch-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #012e40;
    margin-bottom: 0.5rem;
}

.branch-location {
    margin-top: 0.5rem;
}

.branch-map-link {
    color: #0071b5;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: color 0.3s;
}

.branch-map-link:hover {
    color: #005a8f;
    text-decoration: underline;
}

.branch-map-link .material-icons {
    font-size: 1rem;
    vertical-align: middle;
}

.branch-actions {
    flex-shrink: 0;
}

.btn-view-details {
    display: inline-block;
    padding: 0.45rem 0.9rem;
    background: #0071b5;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.2s;
    white-space: nowrap;
}

.btn-view-details:hover {
    background: #005a8f;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 113, 181, 0.3);
}

/* Responsive */
@media only screen and (max-width: 768px) {
    .branch-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.5rem 0;
    }
    
    .branch-image {
        max-width: 100%;
    }
    .branch-marker {
        align-self: center;
    }
    
    .branch-content {
        width: 100%;
        text-align: center;
    }
    
    .branch-actions {
        width: 100%;
        text-align: center;
    }
    
    .btn-view-details {
        width: 100%;
        text-align: center;
    }
}

/* Time Selection Boxes */
.time-selection-container {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.time-selection-box {
    flex: 1;
    border: 2px solid #0071b5;
    border-radius: 8px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    background: #fff;
    text-align: center;
}

.time-selection-box:hover {
    border-color: #005a8f;
    box-shadow: 0 4px 12px rgba(0, 113, 181, 0.15);
    transform: translateY(-2px);
}

.time-box-icon {
    color: #0071b5;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.time-box-icon .material-icons {
    font-size: 1.5rem;
}

.time-box-label {
    color: #0071b5;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    display: inline-block;
}

.time-box-date {
    color: #012e40;
    font-size: 1rem;
    font-weight: 500;
}

.time-box-time {
    color: #0071b5;
    font-size: 1rem;
    font-weight: 500;
}

/* Time Selection Modal */
.time-selection-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
}

.time-selection-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: #fff;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 10000;
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.modal-title {
    color: #012e40;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.modal-body {
    padding: 1.5rem;
}

/* Calendar Styles */
.calendar-container {
    margin-bottom: 1.5rem;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.calendar-nav-btn {
    background: transparent;
    border: none;
    color: #0071b5;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-nav-btn:hover {
    background: #e3f2fd;
}

.calendar-nav-btn .material-icons {
    font-size: 1.5rem;
}

.calendar-month-year {
    font-size: 1.1rem;
    font-weight: 600;
    color: #012e40;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.calendar-weekday {
    text-align: center;
    font-weight: 600;
    color: #666;
    font-size: 0.9rem;
    padding: 0.5rem 0;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.calendar-day.empty {
    cursor: default;
    background: transparent;
}

.calendar-day.past {
    color: #ccc;
    cursor: not-allowed;
    background: #f5f5f5;
}

.calendar-day.available {
    color: #0071b5;
    background: #fff;
    border: 1px solid #e0e0e0;
}

.calendar-day.available.no-slot {
    color: #999;
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    opacity: 0.8;
}

.calendar-day.available:hover {
    background: #e3f2fd;
    border-color: #0071b5;
}

.calendar-day.available.selected {
    background: #0071b5;
    color: #fff;
    border-color: #0071b5;
    font-weight: 600;
}

.time-slot-section {
    margin-bottom: 1rem;
}

.time-slot-heading {
    color: #012e40;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.time-slot-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.time-slot-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border: 2px solid #0071b5;
    border-radius: 8px;
    background: #fff;
    color: #0071b5;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.time-slot-btn:hover {
    background: #e3f2fd;
    border-color: #005a8f;
}

.time-slot-btn.active {
    background: #0071b5;
    color: #fff;
    border-color: #0071b5;
}

.time-slot-btn.active .material-icons {
    color: #fff;
}

.eco-slot-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.75rem;
    background: #e8f5e9;
    border-radius: 8px;
    color: #2e7d32;
    font-size: 0.9rem;
}

.eco-icon {
    color: #4caf50;
    font-size: 1.25rem;
}

.eco-description {
    margin-left: auto;
    font-size: 0.85rem;
}

.modal-footer {
    padding: 1.5rem;
    border-top: 1px solid #e0e0e0;
    text-align: right;
}

.btn-save {
    background: #0071b5;
    color: #fff;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
    font-family: 'Kanit';
}

.btn-save:hover {
    background: #005a8f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 113, 181, 0.3);
}

.btn-save:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Responsive */
@media only screen and (max-width: 768px) {
    .time-selection-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .calendar-weekdays,
    .calendar-days {
        gap: 0.25rem;
    }
    
    .calendar-day {
        font-size: 0.85rem;
        padding: 0rem 0;
    }
    
    .calendar-month-year {
        font-size: 1rem;
    }
}

/* Time Selection Section */
.time-selection-section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
}

.time-selection-heading {
    font-size: 1rem;
    font-weight: 600;
    color: #012e40;
    margin-bottom: 1rem;
}

.time-templates-container {
    min-height: 60px;
}

.time-templates-loading,
.time-templates-error,
.time-templates-empty {
    text-align: center;
    padding: 1rem;
    color: #666;
    font-size: 0.9rem;
}

.time-templates-error {
    color: #d32f2f;
}

.time-templates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 0.75rem;
}

.time-template-btn {
    padding: 0.75rem 1rem;
    border: 2px solid #0071b5;
    border-radius: 8px;
    background: #fff;
    color: #0071b5;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.time-template-btn:hover {
    background: #e3f2fd;
    border-color: #005a8f;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 113, 181, 0.2);
}

.time-template-btn.active {
    background: #0071b5;
    color: #fff;
    border-color: #0071b5;
    box-shadow: 0 2px 8px rgba(0, 113, 181, 0.3);
}

.time-template-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f5f5f5;
    border-color: #ddd;
    color: #999;
}

.time-template-btn.disabled:hover {
    background: #f5f5f5;
    border-color: #ddd;
    transform: none;
    box-shadow: none;
}

.btn-save.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #ccc;
    border-color: #ccc;
}

.btn-save.disabled:hover {
    background: #ccc;
    border-color: #ccc;
    transform: none;
    box-shadow: none;
}

@media only screen and (max-width: 768px) {
    .time-selection-section {
        margin-top: 1rem;
        padding-top: 1rem;
    }
    
    .time-templates-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 0.5rem;
    }
    
    .time-template-btn {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }
}