/* Custom styles for DataViz Delight Dashboard */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a1a1a1;
}

/* File upload area styling */
[type="file"] + label {
    cursor: pointer;
}

/* Chart container styling */
canvas {
    width: 100% !important;
    height: 100% !important;
}

/* Table styling */
table {
    border-collapse: separate;
    border-spacing: 0;
}

th {
    position: sticky;
    top: 0;
    z-index: 10;
}

/* Animation for cards */
.card-enter {
    opacity: 0;
    transform: translateY(20px);
}

.card-enter-active {
    opacity: 1;
    transform: translateY(0);
    transition: all 300ms ease-out;
}