.stat-card {
    background: white;
    border-radius: 16px;
    padding: 12px 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.stat-card .icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
}

.stat-card .count {
    font-size: 20px;
    font-weight: 700;
    color: #1F2937;
}

.stat-card .label {
    font-size: 11px;
    color: #6B7280;
}

.aktivitas-item {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.aktivitas-item:last-child {
    border-bottom: none;
}

.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: #9ca3af;
}

.empty-state i {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.content-container {
    background: var(--gray-bg);
    border-radius: 30px 30px 0 0;
    margin-top: -20px;
    padding: 0 16px 20px 16px;
}

.app-container {
    max-width: 500px;
    margin: 0 auto;
    background: var(--gray-bg);
    min-height: 100vh;
    padding-bottom: 70px;
}

.header-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 0 0 30px 30px;
    padding: 16px 20px;
}

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 500px;
    margin: 0 auto;
    background: white;
    display: flex;
    justify-content: space-around;
    padding: 12px 20px 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
    border-radius: 20px 20px 0 0;
    z-index: 100;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #6b7280;
    font-size: 12px;
}

.nav-item.active {
    color: var(--primary);
}

.nav-item i {
    font-size: 22px;
    margin-bottom: 4px;
}

.chart-container {
    background: white;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 16px;
    position: relative;
    height: 220px;
}

.time-info {
    font-size: 12px;
    color: #6B7280;
}

.badge-aktivitas {
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 12px;
}

.date-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    border-radius: 30px;
    padding: 6px 14px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.date-nav .nav-btn {
    background: none;
    border: none;
    color: var(--primary);
    padding: 4px 10px;
    cursor: pointer;
    font-size: 16px;
}

.date-nav .nav-btn:hover {
    background: var(--primary-light);
    border-radius: 20px;
}

.date-nav .date-display {
    font-size: 13px;
    font-weight: 500;
    min-width: 120px;
    text-align: center;
    cursor: pointer;
}

.date-nav .date-display:hover {
    color: var(--primary);
}

.total-data {
    background: #dfcbff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    display: inline-block;
}

.search-aktivitas {
    background: white;
    border-radius: 30px;
    padding: 6px 16px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 12px;
}

.search-aktivitas input {
    border: none;
    outline: none;
    background: transparent;
    width: 100%;
    padding: 8px 0;
    font-size: 13px;
}

.aktivitas-nama-pasien {
    font-weight: 600;
    font-size: 13px;
}

.aktivitas-detail {
    font-size: 11px;
    color: #6B7280;
}