/* ── Accordion ── */
    .accordion-button::after { display: none !important; }

    .accordion-button {
        position: relative;
        padding: 1rem 1.25rem;
        background: linear-gradient(135deg, #0d6efd 0%, #06A3DA 100%);
        color: #fff !important;
        font-weight: 700;
        font-size: 0.95rem;
        letter-spacing: 0.05em;
        border: none;
        border-radius: 10px !important;
        box-shadow: 0 4px 15px rgba(6,163,218,0.3);
        transition: all 0.3s ease;
    }

    .accordion-button:not(.collapsed) {
        background: linear-gradient(135deg, #0b5394 0%, #0d6efd 100%);
        color: #fff !important;
        box-shadow: 0 6px 20px rgba(6,163,218,0.4);
    }

    .accordion-button:focus {
        box-shadow: 0 0 0 3px rgba(6,163,218,0.3);
    }

    .accordion-item {
        border: none !important;
        margin-bottom: 12px;
        border-radius: 12px !important;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    }

    .accordion-body {
        background: #f8fbff;
        padding: 1.25rem;
        border: 1px solid rgba(6,163,218,0.15);
        border-top: none;
        border-radius: 0 0 12px 12px;
    }

    .arrow-icon {
        position: absolute;
        right: 1.25rem;
        top: 50%;
        transform: translateY(-50%);
        transition: transform 0.3s ease;
        font-size: 1rem;
    }

    /* ── Unit Title ── */
    .unit-title {
        font-weight: 700;
        background: linear-gradient(90deg, #e8f4fd, #f0fbff);
        padding: 8px 14px;
        margin-top: 16px;
        margin-bottom: 8px;
        border-left: 5px solid #06A3DA;
        border-radius: 6px;
        color: #0b5394;
        font-size: 0.85rem;
        letter-spacing: 0.08em;
    }

    /* ── Staff Card ── */
    .staff-card {
        background: #ffffff;
        border: 1px solid #e0eef8;
        border-radius: 12px;
        padding: 16px;
        margin-bottom: 14px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.06);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        position: relative;
        overflow: hidden;
    }

    .staff-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: linear-gradient(180deg, #06A3DA, #0d6efd);
        border-radius: 4px 0 0 4px;
    }

    .staff-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(6,163,218,0.2);
    }

    .staff-avatar {
        width: 44px;
        height: 44px;
        background: linear-gradient(135deg, #06A3DA, #0d6efd);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.1rem;
        font-weight: 700;
        flex-shrink: 0;
    }

    .staff-card h6 {
        font-weight: 700;
        color: #1a1a2e;
        font-size: 0.9rem;
        margin-bottom: 4px;
    }

    .badge-gred {
        background: linear-gradient(135deg, #06A3DA, #0d6efd);
        color: white;
        font-size: 0.7rem;
        padding: 2px 8px;
        border-radius: 20px;
        font-weight: 600;
    }

    .info-row {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 0.82rem;
        color: #555;
        margin-top: 4px;
    }

    .info-row i { color: #06A3DA; width: 14px; }

    .jawatan-text {
        font-size: 0.8rem;
        color: #666;
        font-style: italic;
        margin-top: 2px;
        margin-bottom: 6px;
    }

    /* ── Search ── */
    .search-wrapper {
        position: relative;
        max-width: 500px;
        margin: 0 auto 2rem;
    }

    .search-wrapper input {
        padding-left: 3rem;
        border-radius: 50px;
        border: 2px solid #06A3DA;
        height: 48px;
        font-size: 0.95rem;
        box-shadow: 0 4px 15px rgba(6,163,218,0.15);
        transition: box-shadow 0.3s;
    }

    .search-wrapper input:focus {
        box-shadow: 0 4px 20px rgba(6,163,218,0.3);
        border-color: #0d6efd;
        outline: none;
    }

    .search-wrapper .search-icon {
        position: absolute;
        left: 1rem;
        top: 50%;
        transform: translateY(-50%);
        color: #06A3DA;
        font-size: 1.1rem;
        z-index: 10;
    }