
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}


input[type="number"],
input[type="text"],
select {
    transition: all 0.2s ease;
}

input[type="number"]:focus,
input[type="text"]:focus,
select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}


button {
    transition: all 0.2s ease;
}

button:active {
    transform: scale(0.98);
}

/* Chart container */
#diskChart {
    min-height: 450px;
    width: 100%;
}


.bg-gray-800 {
    transition: transform 0.2s ease;
}

.bg-gray-800:hover {
    transform: translateY(-2px);
}


.bg-clip-text {
    animation: gradient 8s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}


@keyframes highlight {
    0% {
        transform: scale(1);
        color: #fff;
    }
    50% {
        transform: scale(1.1);
        color: #3b82f6;
    }
    100% {
        transform: scale(1);
        color: #fff;
    }
}

.highlight {
    animation: highlight 1s ease;
}


.bg-gray-700 {
    transition: all 0.3s ease;
}

.bg-gray-700:hover {
    background-color: #374151;
    transform: translateY(-2px);
}


@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    button {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .grid-cols-2 {
        grid-template-columns: 1fr;
    }
    
    #diskChart {
        min-height: 400px;
    }
}


::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #1f2937;
}

::-webkit-scrollbar-thumb {
    background: #4b5563;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6b7280;
}
