/* =================================================================im
   STF Al-Farabi SaaS Theme - SASS Based Variables & Styling
   ================================================================ */
:root {
    --stf-bg-main: #0B132B;
    --stf-bg-card: #1C2541;
    --stf-bg-glass: rgba(28, 37, 65, 0.7);
    --stf-neon-blue: #00F0FF;
    --stf-neon-glow: rgba(0, 240, 255, 0.35);
    --stf-text-white: #FFFFFF;
    --stf-text-muted: #8D99AE;
    --stf-border-color: rgba(0, 240, 255, 0.25);
    --stf-success: #4CC9F0;
    --stf-danger: #F72585;
    --stf-radius: 12px;
}

/* Wrapper Utama SaaS Dashboard */
.stf-saas-wrapper {
    background-color: var(--stf-bg-main);
    color: var(--stf-text-white);
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    padding: 30px;
    border-radius: var(--stf-radius);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
    border: 1px solid var(--stf-border-color);
    box-sizing: border-box;
}

.stf-saas-wrapper * {
    box-sizing: border-box;
}

/* Header & Branding Lembaga */
.stf-saas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid var(--stf-border-color);
    padding-bottom: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.stf-saas-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stf-saas-logo-box {
    background: var(--stf-neon-blue);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--stf-bg-main);
    font-weight: 800;
    font-size: 18px;
    box-shadow: 0 0 15px var(--stf-neon-glow);
}

.stf-saas-title h2 {
    margin: 0;
    color: var(--stf-neon-blue);
    font-size: 22px;
    text-shadow: 0 0 8px var(--stf-neon-glow);
}

.stf-saas-title p {
    margin: 3px 0 0;
    color: var(--stf-text-muted);
    font-size: 13px;
}

/* Navigasi Tab SaaS */
.stf-saas-nav {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.stf-saas-btn {
    background: transparent;
    color: var(--stf-neon-blue);
    border: 2px solid var(--stf-neon-blue);
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px var(--stf-neon-glow);
    box-shadow: 0 0 8px rgba(0, 240, 255, 0.1);
}

.stf-saas-btn:hover, .stf-saas-btn.active {
    background: var(--stf-neon-blue);
    color: var(--stf-bg-main);
    box-shadow: 0 0 18px var(--stf-neon-blue);
}

/* Kartu / Panel Konten */
.stf-saas-card {
    background: var(--stf-bg-card);
    border-radius: var(--stf-radius);
    padding: 25px;
    margin-bottom: 20px;
    border-left: 5px solid var(--stf-neon-blue);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.stf-saas-card h3 {
    margin-top: 0;
    color: var(--stf-neon-blue);
    font-size: 18px;
    margin-bottom: 15px;
}

/* Form & Inputs */
.stf-saas-input {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--stf-border-color);
    border-radius: 8px;
    padding: 12px 15px;
    color: var(--stf-text-white);
    width: 100%;
    margin-bottom: 15px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.stf-saas-input:focus {
    border-color: var(--stf-neon-blue);
    outline: none;
    box-shadow: 0 0 10px var(--stf-neon-glow);
    background: rgba(255, 255, 255, 0.07);
}

/* Tabel Modern SaaS */
.stf-saas-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.stf-saas-table th, .stf-saas-table td {
    padding: 14px 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 14px;
}

.stf-saas-table th {
    background-color: rgba(0, 240, 255, 0.12);
    color: var(--stf-neon-blue);
    font-weight: 600;
}

.stf-saas-table tr:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

/* Action Links & Badges */
.stf-text-danger {
    color: var(--stf-danger);
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
}
.stf-text-danger:hover {
    text-decoration: underline;
}