/* ========================================================================= */
/* RDF Tracker - Portaal Specifieke Styling (v8.9.2)                         */
/* ========================================================================= */

body.portaal-body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: #0f172a;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.portal-container {
    background-color: #1e293b; 
    border: 1px solid #334155;
    border-radius: 12px;
    padding: 40px;
    max-width: 480px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
}

.logo-wrapper { margin-bottom: 25px; display: flex; justify-content: center; align-items: center; }
.logo-img { max-width: 140px; height: auto; display: block; }

.portal-title {
    color: #f8fafc;
    font-size: 24px;
    margin: 0 0 8px 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.versie-badge {
    background-color: #334155;
    color: #94a3b8;
    font-size: 12px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 12px;
}

.system-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(5, 150, 105, 0.2); 
    color: #34d399;
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 30px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite; 
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Algemene styling knoppen */
.portal-btn {
    display: block;
    text-decoration: none;
    padding: 14px;
    color: white;
    border-radius: 6px;
    font-weight: bold;
    font-size: 14px;
    transition: transform 0.1s ease, filter 0.15s ease;
    border: none;
    width: 100%;
    box-sizing: border-box;
}

.portal-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
}

.portal-btn:active { transform: translateY(0); }

/* Kleuren voor de knoppen */
.btn-primary { background-color: #2563eb; }
.btn-secondary { background-color: #334155; border: 1px solid #475569; }

/* GEFORCEERDE RODE KNOP */
.btn-danger {
    background-color: #ef4444 !important;
    border: 1px solid #b91c1c !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    cursor: pointer !important;
}

.btn-danger:hover {
    background-color: #dc2626 !important;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

