/* ============================================================
   ADMIN PANEL — CLEAN, NON-CONFLICTING STYLES
   Works WITH your main site CSS, not against it.
   ============================================================ */

/* ============================================================
   LOGIN BOX
   ============================================================ */

.login-box {
    width: 420px;
    margin: 140px auto;
    padding: 35px;
    background: rgba(10, 20, 30, 0.75);
    border-radius: 14px;
    border: 2px solid rgba(0,255,255,0.35);
    backdrop-filter: blur(12px);
    box-shadow:
        0 0 20px rgba(0,255,255,0.25),
        inset 0 0 25px rgba(0,255,255,0.15),
        0 0 60px rgba(0,255,255,0.1);
    animation: glowPulse 3s infinite ease-in-out;
}

@keyframes glowPulse {
    0% { box-shadow: 0 0 20px rgba(0,255,255,0.25); }
    50% { box-shadow: 0 0 35px rgba(0,255,255,0.45); }
    100% { box-shadow: 0 0 20px rgba(0,255,255,0.25); }
}

/* ============================================================
   TITLES
   ============================================================ */

.section-title {
    font-size: 28px;
    text-align: center;
    margin-bottom: 25px;
    color: #4ff;
    text-shadow:
        0 0 10px #4ff,
        0 0 20px rgba(0,255,255,0.6);
}

/* ============================================================
   INPUTS
   ============================================================ */

.input-field {
    width: 100%;
    padding: 14px;
    margin: 12px 0 22px;
    border-radius: 8px;
    border: 1px solid rgba(0,255,255,0.3);
    background: rgba(0, 20, 30, 0.55);
    color: #dffaff;
    font-size: 17px;
    outline: none;
    transition: 0.25s;
}

.input-field:focus {
    border-color: #4ff;
    box-shadow: 0 0 12px rgba(0,255,255,0.45);
}

/* ============================================================
   BUTTONS
   ============================================================ */

.button {
    display: inline-block;
    padding: 14px 20px;
    background: #003b45;
    color: #4ff;
    border: 1px solid rgba(0,255,255,0.4);
    border-radius: 8px;
    cursor: pointer;
    font-size: 17px;
    text-align: center;
    width: 100%;
    transition: 0.25s;
    text-shadow:
        0 0 8px rgba(0,255,255,0.45),
        0 0 14px rgba(0,255,255,0.45);
}

.button:hover {
    background: #00606e;
    box-shadow:
        0 0 18px rgba(0,255,255,0.55),
        0 0 30px rgba(0,255,255,0.45);
}

/* ============================================================
   ADMIN DASHBOARD GRID
   ============================================================ */

.admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-top: 40px;
    padding: 0 20px;
}

.admin-card {
    padding: 25px;
    background: rgba(10, 20, 30, 0.75);
    border-radius: 12px;
    border: 2px solid rgba(0,255,255,0.25);
    text-align: center;
    color: #4ff;
    text-decoration: none;
    font-size: 20px;
    transition: 0.25s;
    backdrop-filter: blur(10px);
    box-shadow:
        0 0 15px rgba(0,255,255,0.25),
        inset 0 0 20px rgba(0,255,255,0.15);
}

.admin-card:hover {
    transform: translateY(-6px);
    border-color: #4ff;
    box-shadow:
        0 0 25px rgba(0,255,255,0.55),
        inset 0 0 25px rgba(0,255,255,0.25);
}

/* ============================================================
   MESSAGES
   ============================================================ */

.msg {
    padding: 12px;
    margin-bottom: 18px;
    border-radius: 8px;
    font-size: 15px;
}

.msg.error {
    background: rgba(255, 80, 80, 0.2);
    border: 1px solid rgba(255, 80, 80, 0.4);
    color: #ffb3b3;
}

.msg.success {
    background: rgba(80, 255, 120, 0.2);
    border: 1px solid rgba(80, 255, 120, 0.4);
    color: #b3ffcf;
}
/* Ensure Morning and Evening columns sit side-by-side */
.schedule-columns-2 {
    display: flex;
    flex-direction: row;
    gap: 30px;
    justify-content: space-between;
}

/* Each column should take equal width */
.schedule-column {
    flex: 1;
}

/* Make sure lists don’t collapse */
.schedule-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
/* Make admin friends list 2-wide like public page */
.friends-grid-admin {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* Drag highlight */
.drag-over {
    outline: 3px dashed #4ff;
    border-radius: 10px;
}
