﻿/* ================================================================
   scheduleModal.css  –  Styles for APS / Schedule modal components
   ================================================================ */

/* ── APSSettingModal ────────────────────────────────────── */
.apssm-tabs {
    display: flex;
    gap: 0;
    background: #1b3b6f;
    padding: 0 1rem;
    width: 100%;
}

.apssm-tab {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: color 0.15s, border-color 0.15s;
}

.apssm-tab:hover {
    color: #fff;
}

.apssm-tab--active {
    color: #fff;
    border-bottom: 2px solid #4fa8e8;
}

.apssm-section-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #8899aa;
    margin-bottom: 0.5rem;
    padding: 0 0.25rem;
}

.apssm-field-list {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    max-height: 360px;
    overflow-y: auto;
    padding: 0.25rem;
}

.apssm-field-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.35rem 0.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.875rem;
    transition: background 0.12s;
}

.apssm-field-row:hover {
    background: rgba(79, 168, 232, 0.08);
}
