* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
}

.dashboard-container {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 260px;
    background-color: #13182b;
    color: #a0a5b1;
    display: flex;
    flex-direction: column;
}

.logo {
    padding: 24px;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #1f2538;
}

.logo i {
    color: #8bb4e7;
    font-size: 24px;
}

.menu {
    display: flex;
    flex-direction: column;
    padding: 20px 0;
}

.menu a {
    padding: 16px 24px;
    color: #a0a5b1;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.menu a:hover, .menu a.active {
    color: #fff;
    background-color: #1f2538;
    border-left: 4px solid #cc7d3e;
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.topbar {
    height: 70px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.search-bar {
    background-color: #f1f3f5;
    border-radius: 6px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    width: 400px;
}

.search-bar i {
    color: #adb5bd;
    margin-right: 12px;
}

.search-bar input {
    border: none;
    background: transparent;
    outline: none;
    width: 100%;
    font-size: 14px;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 24px;
}

.notification {
    position: relative;
    color: #6c757d;
    font-size: 18px;
    cursor: pointer;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.content-area {
    padding: 32px;
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 32px;
}

.page-header h1 {
    font-size: 28px;
    color: #13182b;
    margin-bottom: 4px;
}

.date-subtitle {
    color: #868e96;
    font-size: 14px;
}

.btn-primary {
    background-color: #cc7d3e;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #b56c32;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.stat-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    border: 1px solid #e9ecef;
}

.stat-icon {
    font-size: 32px;
}

.stat-icon.green { color: #51cf66; }
.stat-icon.orange { color: #cc7d3e; }
.stat-icon.dark-green { color: #20c997; }

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 12px;
    color: #adb5bd;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.stat-info h2 {
    font-size: 24px;
    color: #343a40;
    margin-bottom: 4px;
}

.stat-trend {
    font-size: 12px;
}

.stat-trend.green-text { color: #51cf66; }
.stat-trend.gray-text { color: #adb5bd; }

.chart-section {
    background-color: #fff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    border: 1px solid #e9ecef;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.chart-header h3 {
    font-size: 14px;
    color: #343a40;
    letter-spacing: 0.5px;
}

.chart-total {
    font-size: 14px;
    font-weight: 600;
    color: #495057;
}

.bar-chart {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 250px;
    padding-top: 20px;
}

.bar-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 12%;
    height: 100%;
    justify-content: flex-end;
}

.bar {
    width: 60px;
    background-color: #e6c8a8;
    border-radius: 6px 6px 0 0;
    margin: 12px 0;
    transition: all 0.3s;
}

.bar.active {
    background-color: #cc7d3e;
}

.bar-label-top, .bar-label-bottom {
    font-size: 12px;
    color: #adb5bd;
}