* {
    scrollbar-width: thin;
    scrollbar-color: #3f3f46 #18181b;
}

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

*::-webkit-scrollbar-track {
    background: #18181b;
}

*::-webkit-scrollbar-thumb {
    background: #3f3f46;
    border-radius: 4px;
}

body {
    background: #09090b;
    color: #f4f4f5;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.form-input {
    width: 100%;
    background: #18181b;
    border: 1px solid #3f3f46;
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 1px #3b82f6;
}

#toast {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    color: white;
    font-weight: 600;
    min-width: 280px;
    text-align: center;
    display: none;
    transition: opacity 0.3s;
}