body { 
    background-color: #0f0f0f; 
    color: #f1f1f1; 
}
.nav-bg { 
    background-color: #0f0f0f; 
}

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0f0f0f;
}
::-webkit-scrollbar-thumb {
    background: #718096;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #a0aec0;
}

input, textarea {
    background-color: #121212;
    color: white;
    border: 1px solid #374151;
    padding: 0.5rem;
    border-radius: 0.375rem;
    width: 100%;
    margin-top: 0.25rem;
}
input:focus, textarea:focus {
    outline: none;
    border-color: #3b82f6;
}
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #121212 inset !important;
    -webkit-text-fill-color: white !important;
    transition: background-color 5000s ease-in-out 0s;
}

