/* /assets/style.css */
:root {
    --psp-red: #d32f2f;
    --psp-navy: #1e293b;
    --psp-light: #f8fafc;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background-color: var(--psp-light);
    color: #334155;
}

.navbar-psp {
    background-color: var(--psp-navy);
    border-bottom: 3px solid var(--psp-red);
}

.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-5px);
}

.btn-psp {
    background-color: var(--psp-red);
    color: white;
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 600;
}

.btn-psp:hover {
    background-color: #b71c1c;
    color: white;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
}

.deadline-warning { background-color: #ef4444; }
.deadline-ok { background-color: #22c55e; }
