:root {
    --primary: #025964;
    --secondary: #34495e;
    --accent: #3498db;
    --success: #27ae60;
    --warning: #f39c12;
    --danger: #e74c3c;
    --light: #ecf0f1;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f0f2f5;
    margin: 0;
}

/* Top Navigation & Filters */
.filter-bar {
    background: white;
    padding: 15px;
    box-shadow: 0 2px 4px rgb(0 0 0 / 10%);
    display: flex;
    gap: 20px;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    justify-content: space-between;
}
.filter-bar .logo {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 18px;
    color: #fff;
    position: relative;
}
.filter-bar .logo:before {
    content: "";
    position: absolute;
    left: -50px;
    top: -21px;
    background: #025964;
    bottom: -20px;
    right: -20px;
    z-index: -1;
    transform: skew(30deg, 0deg);
}
.filter-bar .right-column {
    display: flex;
    gap: 10px;
    align-items: center;
}
.filter-lable {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}
.filter-bar input[type="date"] {
    padding: 7px 15px;
    border: 2px solid #025964;
    border-radius: 5px;
    font-weight: 600;
}

.primary-btn {
    padding: 10px 25px;
    background: #025964;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.primary-btn:hover {
    background: #2980b9;
}
.main-section {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 20px;
    padding-right: 20px;
}
.right-section {
    background: #fff;
    padding: 20px;
    margin-top: 85px;
    border-radius: 8px;
}
/* Summary Cards */
.summary-grid {
    display: grid;
    gap: 20px;
    padding: 20px;
}
.sidebar {
    /*background: #025964;*/
    padding-top: 65px;
    min-height: calc(100vh - 65px);
}
.card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    text-align: center;
    border-bottom: 4px solid var(--accent);
}

.card h3 {
    margin: 0;
    font-size: 14px;
    color: #7f8c8d;
    text-transform: uppercase;
}

.card .value {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary);
    margin-top: 10px;
}

/* Main Table */
.table-container {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
}

th {
    background: var(--primary);
    color: white;
    padding: 12px;
    text-align: left;
    font-size: 13px;
}

td {
    padding: 12px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

tr:hover {
    background: #f9f9f9;
}

.total-row {
    background: #d6eaf8 !important;
    font-weight: bold;
    color: #154360;
}

/* Clickable Cells */
.clickable {
    color: var(--accent);
    cursor: pointer;
    font-weight: bold;
    text-decoration: underline;
}

.clickable:hover {
    color: var(--primary);
}
