html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

body {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0e7ff 100%);
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

.dashboard-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 16px;
    box-sizing: border-box;
    overflow: auto;
}

.card {
    background: white;
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
}

.chart-area {
    height: 72px;
    width: 100%;
    margin-top: auto;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #bdbdbd;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #9e9e9e;
}

.dms-folder-item {
    transition: all 0.2s ease-in-out;
    border: 1px solid #e5e7eb;
    margin-bottom: 2px;
}

.dms-folder-item:hover {
    border-color: #3b82f6;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.15);
    background-color: #f8fafc;
    transform: translateY(-1px);
}

.dms-file-item {
    transition: all 0.15s ease-in-out;
    margin-bottom: 1px;
}

.dms-file-item:hover {
    background-color: #f3f4f6;
    transform: translateX(4px);
}

.dms-clickable {
    cursor: pointer;
    user-select: none;
}

.dms-clickable:hover {
    color: #3b82f6;
}

.dms-icon {
    transition: transform 0.2s ease-in-out;
}

.dms-folder-item:hover .dms-icon {
    transform: scale(1.05);
}

.dms-folder-tree-item {
    margin-bottom: 4px;
}

.folder-content {
    margin-left: 16px;
    border-left: 2px solid #e5e7eb;
    padding-left: 8px;
}

.expand-icon {
    font-size: 12px;
    transition: transform 0.2s ease-in-out;
}

.dms-icon,
.dms-icon svg {
    width: 16px !important;
    height: 16px !important;
    flex-shrink: 0;
}

.card h2 svg,
.card h2 .dms-icon {
    width: 20px !important;
    height: 20px !important;
}

.dms-file-item svg,
.dms-folder-item svg,
.dms-file-item .dms-icon,
.dms-folder-item .dms-icon {
    width: 16px !important;
    height: 16px !important;
    flex-shrink: 0;
}

.w-4, .w-5, .w-6, .w-8, .w-12 {
    width: 16px !important;
}

.h-4, .h-5, .h-6, .h-8, .h-12 {
    height: 16px !important;
}

.card h2 .w-4, .card h2 .w-5, .card h2 .w-6 {
    width: 20px !important;
}

.card h2 .h-4, .card h2 .h-5, .card h2 .h-6 {
    height: 20px !important;
}

.dms-folder-item .flex,
.dms-file-item .flex {
    align-items: center;
    gap: 8px;
}

input[type="date"],
select {
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 14px;
    background: white;
    transition: border-color 0.2s ease;
}

input[type="date"]:focus,
select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

label {
    font-weight: 500;
    color: #374151;
    margin-bottom: 4px;
    display: block;
}

