body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0d0d1a;
    color: #cde9ff;
}

h1 {
    text-align: center;
    color: #5edfff;
    font-size: 5em;
    text-shadow: 0 0 10px #00bfff;
}

.generate-all {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

/* === PRESET DROPDOWN FIX === */
select {
    background-color: #000;
    color: #5edfff;
    border: 1px solid #00bfff;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 15px;
    box-shadow: 0 0 10px #00bfff;
}

select option {
    background-color: #000;
    color: #5edfff;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px;
}

.category-group {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0,50,100,0.15);
    border: 1px solid rgba(0,200,255,0.3);
    border-radius: 14px;
    padding: 12px;
    width: 90%;
    max-width: 720px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 12px rgba(0,191,255,0.3);
}

button {
    background-color: rgba(0,191,255,0.2);
    color: #cde9ff;
    border: 1px solid #00bfff;
    border-radius: 8px;
    padding: 6px 12px;
    cursor: pointer;
    text-shadow: 0 0 6px #00bfff;
    box-shadow: 0 0 8px #00bfff;
}

button:hover {
    background-color: rgba(0,191,255,0.4);
}

button:disabled {
    background-color: rgba(80,80,80,0.2);
    border-color: #555;
    color: #777;
    box-shadow: none;
}

.output-box {
    flex-grow: 1;
    background-color: rgba(255,255,255,0.06);
    border: 1px solid #4da6ff;
    border-radius: 8px;
    padding: 8px;
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 0 5px #00bfff;
}

.count-display {
    min-width: 18px;
    text-align: center;
    font-weight: bold;
}
#bottomText {
                text-align: center;
                color: #5edfff;
                font-size: 1.5em;
                text-shadow:
                    0 0 5px #5edfff,
                    0 0 10px #00bfff;
            }