body {
    margin: 0;
    padding: 0;
    font-family: 'Courier New', sans-serif;
    background-color: #0f172a;
    color: #f1f5f9;
}

.header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #1e293b;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #38bdf8;
}

.user-info {
    font-size: 0.95rem;
}

.user-info a {
    color: #f87171;
    text-decoration: none;
    margin-left: 10px;
}

.dashboard-container {
    padding: 2rem;
    max-width: 1400px;
    margin: auto;
}

.page-title {
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 700;
    color: #38bdf8;
    border-bottom: 2px solid #334155;
    padding-bottom: 0.5rem;
    text-align: center;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: linear-gradient(to bottom right, #0d1b2a, #16283c);
    border: 1px solid #38bdf8;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 0 12px rgba(56, 189, 248, 0.15);
    transition: transform 0.3s ease;
    text-align: center;
}

.card:hover {
    transform: translateY(-6px);
}

.card h2 {
    color: #facc15;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px dashed #334155;
    padding-bottom: 0.5rem;
	font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
}

.card p {
    margin: 0.6rem 0;
    font-size: 1.05rem;
    font-family: 'Courier New', monospace;
    color: #e2e8f0;
}

.card .timestamp {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-top: 1rem;
}

.footer {
    text-align: center;
    padding: 1rem;
    font-size: 0.85rem;
    background-color: #1e293b;
    color: #94a3b8;
}

@media (max-width: 600px) {
    .header-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .page-title {
        font-size: 1.5rem;
    }

    .card p {
        font-size: 0.95rem;
    }
} 
