﻿

.staff-page-layout {
    flex-direction: row;
    display: flex;
    height: 100%;
    width: 100%;
    min-width: 0;
}
.staff-shell,
.staff-content {
    background: rgba(201, 233, 74, 0.08);
    border-radius: 14px;
    border: 1px solid rgba(201, 233, 74, 0.2);
    color: #f6f9ff;
    padding: 1.5rem;
    display: flex; /* key */
    flex-direction: column; /* key */
    min-height: 0; /* key */
    width: 100%;
}

@media (max-width: 900px) {
    .staff-page-layout {
        grid-template-columns: 1fr;
    }
}
.staff-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

    .staff-header h1 {
        margin: 0;
    }

    .staff-header p {
        margin: .35rem 0 0;
        color: rgba(246, 249, 255, 0.82);
    }


.btn-primary,
.btn-ghost {
    border-radius: 10px;
    border: 1px solid rgba(201, 233, 74, 0.25);
    padding: .45rem .8rem;
    font-weight: 600;
    cursor: pointer;
}

.btn-primary {
    background: rgba(201, 233, 74, 0.22);
    color: #f9ffcf;
}

.btn-ghost {
    background: rgba(7, 18, 28, 0.5);
    color: #f6f9ff;
}

.modal-grid option {
    background: #0f1d2b;
}