body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0f172a;
    color: #f8fafc;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background-color: #1e293b;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    text-align: center;
    max-width: 500px;
    width: 100%;
}

h1 {
    color: #38bdf8;
    margin-bottom: 5px;
}

.subtitle {
    color: #94a3b8;
    font-size: 0.9em;
    margin-bottom: 30px;
}

/* Laadbalk */
.progress-bar {
    background-color: #334155;
    border-radius: 20px;
    position: relative;
    height: 20px;
    width: 100%;
    overflow: hidden;
    margin-top: 15px;
}

.progress-fill {
    background-color: #ef4444;
    height: 100%;
    width: 0%;
    transition: width 0.1s linear;
}

#status-text {
    font-size: 0.9em;
    color: #e2e8f0;
    font-style: italic;
}

/* Grap sectie */
.hidden {
    display: none;
}

h2 {
    color: #f43f5e;
}

blockquote {
    background-color: #334155;
    border-left: 4px solid #38bdf8;
    padding: 10px;
    margin: 20px 0;
    font-style: italic;
    color: #cbd5e1;
}

.footer-note {
    font-size: 0.8em;
    color: #64748b;
    margin-top: 25px;
}
/* Stijlen voor de domme wachtwoord generator */
.generator-box {
    background-color: #0f172a;
    border: 2px dashed #f43f5e;
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
}

.generator-box h3 {
    margin-top: 0;
    font-size: 1.1em;
    color: #38bdf8;
}

#password-display {
    background-color: #1e293b;
    padding: 12px;
    border-radius: 6px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.2em;
    font-weight: bold;
    color: #f43f5e;
    letter-spacing: 1px;
    margin-bottom: 15px;
    border: 1px solid #334155;
    word-break: break-all;
}

.gen-button {
    background-color: #38bdf8;
    color: #0f172a;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.gen-button:hover {
    background-color: #0ea5e9;
}