/* Shared styles for modern theme */
body {
    background: linear-gradient(135deg, #1a202c, #2d3748);
    color: #e2e8f0;
    font-family: 'Inter', sans-serif;
}

.navbar {
    background: #29394A; /* Company color for main bar */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.navbar a {
    color: white;
    transition: color 0.2s;
}

.navbar a:hover {
    color: #e2e8f0;
}

.card {
    background: #2d3748;
    border-radius: 0.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
}

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

.btn-primary {
    background: #29394A; /* Company color for buttons */
    border: none;
    color: white;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(41, 57, 74, 0.5); /* Subtle shadow with company color */
}

.table {
    background: #2d3748;
    border-radius: 0.5rem;
    overflow: hidden;
}

.table th, .table td {
    border-color: #4a5568;
}

.table .heat-row.green { background-color: #38a169; }
.table .heat-row.yellow { background-color: #d69e2e; color: #1a202c; }
.table .heat-row.red { background-color: #e53e3e; }
.table .heat-row.gray { background-color: #718096; }