/* --- GIGATON CORE DESIGN SYSTEM --- */
:root {
    --bg-dark: #0a0a0b;
    --bg-card: #141417;
    --sidebar-bg: #0d0d0f;
    --accent: #00ffff; /* Cyan Neon */
    --accent-dim: rgba(0, 255, 255, 0.2);
    --text-main: #e0e0e0;
    --text-dim: #888888;
    --text-muted: #444444;
    --border: #2a2a2e;
    --error: #ff4444;
    --success: #44ff44;
    --font-mono: 'Courier New', Courier, monospace;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-mono);
    display: flex;
    min-height: 100vh;
    overflow-x: hidden;
}

/* --- LAYOUT --- */
.sidebar {
    width: 240px;
    background-color: var(--sidebar-bg);
    border-right: 1px solid var(--border);
    padding: 30px 20px;
    position: fixed;
    height: 100vh;
    display: flex;
    flex-direction: column;
    z-index: 100;
}

.main-content {
    margin-left: 240px;
    flex: 1;
    padding: 40px;
    min-height: 100vh;
}

/* --- NAVIGATION --- */
.nav-link {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 12px 0;
    transition: all 0.3s ease;
    display: block;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent);
    padding-left: 10px;
}

/* --- COMPONENTS --- */
.protocol-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.status-badge {
    font-size: 0.7rem;
    padding: 4px 8px;
    border: 1px solid var(--accent);
    color: var(--accent);
    text-transform: uppercase;
}

/* --- AGENDA / PROTOCOLS MODULE --- */
.dashboard-home-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: start;
}

.protocol-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.protocol-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 15px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: all 0.2s ease;
}

.protocol-item:hover {
    border-color: var(--accent);
    box-shadow: 0 0 10px var(--accent-dim);
}

.protocol-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.protocol-title {
    font-weight: bold;
    font-size: 1rem;
    color: var(--accent);
    text-transform: uppercase;
}

.protocol-date {
    font-size: 0.75rem;
    color: var(--text-dim);
}

.protocol-desc {
    font-size: 0.85rem;
    color: var(--text-main);
    line-height: 1.4;
}

.protocol-footer {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px solid var(--border);
    padding-top: 10px;
}

.protocol-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.protocol-status-dot.done {
    background-color: var(--success);
    box-shadow: 0 0 8px var(--success);
}

.protocol-status-dot.pending {
    background-color: var(--accent);
    box-shadow: 0 0 8px var(--accent);
}

@media (max-width: 1024px) {
    .dashboard-home-layout {
        grid-template-columns: 1fr;
    }
    .sidebar {
        width: 70px;
        padding: 20px 10px;
    }
    .main-content {
        margin-left: 70px;
    }
    .nav-link span { display: none; }
}
