body {
    background-color: #f4f6f9;
    font-family: Arial, sans-serif;
}

.navbar-brand {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.stat-card {
    border-left: 4px solid;
    transition: transform 0.15s;
}
.stat-card:hover {
    transform: translateY(-2px);
}
.stat-card.leases { border-color: #3498db; }
.stat-card.sales { border-color: #2ecc71; }
.stat-card.commission { border-color: #f39c12; }
.stat-card.total { border-color: #9b59b6; }

.stat-card .stat-value {
    font-size: 1.8rem;
    font-weight: 700;
}
.stat-card .stat-label {
    color: #6c757d;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table-deals th {
    background-color: #2c3e50;
    color: white;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}
.table-deals td {
    vertical-align: middle;
    font-size: 0.9rem;
}
.table-deals tbody tr:hover {
    background-color: #eaf2f8;
    cursor: pointer;
}

.badge-lease { background-color: #3498db; }
.badge-sale { background-color: #2ecc71; }
.badge-draft { background-color: #95a5a6; }
.badge-submitted { background-color: #f39c12; }
.badge-paid { background-color: #2ecc71; }
.badge-closed { background-color: #2c3e50; }

.form-section {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.form-section h5 {
    color: #2c3e50;
    border-bottom: 2px solid #3498db;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.doc-slot {
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    transition: all 0.2s;
}
.doc-slot:hover {
    border-color: #3498db;
    background-color: #f8f9ff;
}
.doc-slot.uploaded {
    border-color: #2ecc71;
    border-style: solid;
    background-color: #f0faf4;
}

.login-container {
    max-width: 420px;
    margin: 80px auto;
}
.login-card {
    border: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-radius: 12px;
}

.summary-table th {
    background-color: #34495e;
    color: white;
}

.search-bar {
    background: white;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.page-header {
    margin-bottom: 1.5rem;
}
.page-header h2 {
    color: #2c3e50;
    font-weight: 700;
}

a.sort-link {
    color: white;
    text-decoration: none;
}
a.sort-link:hover {
    color: #f0f0f0;
}

.currency::before {
    content: '$';
}
