/* =========================================================
   GF Date & Time Picker - gf-date-picker.css
   ========================================================= */
#field_12_3 {
    display: block !important;
}
#field_12_3 .gf-dtp-wrapper {
    font-family: inherit;
    background: #f7f8fa;
    border: 1px solid #e2e5ea;
    border-radius: 14px;
    padding: 28px 24px 32px;
    max-width: 100%;
    margin: 0 auto 24px;
    box-sizing: border-box;
}
/* Month heading */
#field_12_3 .gf-dtp-month {
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    color: #1a1a2e;
    margin-bottom: 20px;
    letter-spacing: 0.01em;
}
/* Navigation row */
#field_12_3 .gf-dtp-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}
/* Arrow buttons */
#field_12_3 .gf-dtp-arrow {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    font-size: 2.4rem !important;
    color: #5bc8d8 !important;
    cursor: pointer;
    padding: 0 4px !important;
    line-height: 1;
    flex-shrink: 0;
    transition: color 0.15s;
    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
}
#field_12_3 .gf-dtp-arrow:hover {
    color: #3ab0c0 !important;
    background: none !important;
}
#field_12_3 .gf-dtp-arrow:disabled {
    color: #cdd2da !important;
    cursor: default;
    background: none !important;
}
/* Day cards container */
#field_12_3 .gf-dtp-days {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    flex: 1;
}
/* Individual day card */
#field_12_3 .gf-dtp-day {
    background: #fff !important;
    border: 1.5px solid #dde1e8 !important;
    border-radius: 10px !important;
    padding: 14px 8px !important;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.15s, box-shadow 0.15s;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: #1a1a2e !important;
    box-shadow: none !important;
    width: 100% !important;
    height: auto !important;
    line-height: 1 !important;
}
#field_12_3 .gf-dtp-day:hover {
    border-color: #5bc8d8 !important;
    box-shadow: 0 2px 8px rgba(91, 200, 216, 0.15) !important;
    background: #fff !important;
}
#field_12_3 .gf-dtp-day.selected {
    border-color: #5bc8d8 !important;
    box-shadow: 0 0 0 1.5px #5bc8d8 !important;
    background: #fff !important;
}
#field_12_3 .gf-dtp-day-name {
    font-size: 13px;
    color: #6b7280;
    font-weight: 400;
    display: block;
}
#field_12_3 .gf-dtp-day-num {
    font-size: 2.1rem;
    font-weight: 300;
    color: #1a1a2e;
    line-height: 1;
    display: block;
}
/* Time label */
#field_12_3 .gf-dtp-time-label {
    text-align: center;
    font-size: 15px;
    color: #1a1a2e;
    font-weight: 400;
    margin: 24px 0 16px;
}
/* Time slots row */
#field_12_3 .gf-dtp-slots {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
#field_12_3 .gf-dtp-slot {
    background: none !important;
    border: 1.5px solid transparent !important;
    box-shadow: none !important;
    font-size: 14px !important;
    color: #1a1a2e !important;
    cursor: pointer;
    padding: 10px 0 !important;
    text-align: center;
    border-radius: 10px !important;
    transition: background 0.15s, color 0.15s, border-color 0.15s, box-shadow 0.15s;
    font-family: inherit;
    width: 100% !important;
    height: auto !important;
}
#field_12_3 .gf-dtp-slot:hover:not(:disabled) {
    background: rgba(91, 200, 216, 0.08) !important;
    border-color: #5bc8d8 !important;
}
#field_12_3 .gf-dtp-slot.selected {
    color: #1a1a2e !important;
    font-weight: 500;
    background: rgba(91, 200, 216, 0.08) !important;
    border-color: #5bc8d8 !important;
    box-shadow: 0 0 0 1.5px #5bc8d8 !important;
}
#field_12_3 .gf-dtp-slot:disabled {
    color: #c0c5ce !important;
    cursor: default;
    text-decoration: line-through;
    background: none !important;
    border-color: transparent !important;
}
/* =========================================================
   Mobile
   ========================================================= */
@media (max-width: 480px) {
    #field_12_3 .gf-dtp-wrapper {
        padding: 20px 16px 24px;
    }

    #field_12_3 .gf-dtp-days {
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
    }

    #field_12_3 .gf-dtp-day {
        padding: 10px 4px !important;
    }

    #field_12_3 .gf-dtp-day-name {
        font-size: 9px;
    }

    #field_12_3 .gf-dtp-day-num {
        font-size: 1.6rem;
    }

    #field_12_3 .gf-dtp-arrow {
        font-size: 1.8rem !important;
        padding: 0 2px !important;
    }

    #field_12_3 .gf-dtp-time-label {
        font-size: 14px;
    }

    #field_12_3 .gf-dtp-slot {
        font-size: 13px !important;
    }
}