:root { --jv-blue: #003366; --jv-gold: #c5a059; --bg: #f4f7f9; }
body { font-family: 'Segoe UI', Arial; background: var(--bg); margin: 0; }
header { background: var(--jv-blue); color: white; padding: 1rem 5%; display: flex; justify-content: space-between; align-items: center; border-bottom: 4px solid var(--jv-gold); }
.logo { font-size: 1.3rem; font-weight: bold; }
header a { color: white; text-decoration: none; border: 1px solid white; padding: 5px 12px; border-radius: 4px; font-size: 0.8rem; }
.container { width: 95%; max-width: 1400px; margin: 2rem auto; }
.card { background: white; padding: 2rem; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.1); margin-bottom: 2rem; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
label { font-weight: bold; display: block; margin-bottom: 5px; color: var(--jv-blue); font-size: 0.9rem; }
input, select, textarea { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; margin-bottom: 15px; }
.btn-blue { background: var(--jv-blue); color: white; padding: 12px; border: none; border-radius: 4px; cursor: pointer; font-weight: bold; width: 100%; }
table { width: 100%; border-collapse: collapse; }
th { text-align: left; padding: 12px; background: #f8f9fa; border-bottom: 2px solid #ddd; }
td { padding: 12px; border-bottom: 1px solid #eee; font-size: 0.9rem; }
.badge { padding: 4px 10px; border-radius: 12px; font-size: 0.7rem; font-weight: bold; }
.status-pending { background: #e9ecef; }
.status-completed { background: #d4edda; color: #155724; 
/* Enhanced Status Badge Colors */
.status-acknowledged { 
    background: #d1ecf1; 
    color: #0c5460; 
}

.status-conducting { 
    background: #fff3cd; 
    color: #856404; 
}

/* Timeline Styling (for the column in your tables) */
.timeline-item {
    border-left: 2px solid var(--jv-gold);
    padding-left: 8px;
    margin-bottom: 6px;
    font-size: 0.75rem;
}

/* File Link Styling */
.file-link {
    color: var(--jv-blue);
    text-decoration: none;
    font-weight: bold;
    font-size: 0.8rem;
}
.file-link:hover {
    text-decoration: underline;
}}
