/* Basis */
body {
    background-color: #121212;
    color: #f1f1f1;
    font-family: "Segoe UI", sans-serif;
    margin: 0;
    padding: 0;
}

/* Container */
#dbcq-wrap {
    padding: 2rem;
    max-width: 600px;
    margin: 2rem auto;
    background-color: transparent;
}

/* Überschrift im Karten-Container mittig ausrichten */
#dbcq-card h2 {
    text-align: center;   /* zentriert den Text */
    margin-top: 0;        /* optional: gleicht verticalen Abstand an */
}

#dbcq-card {
    background-color: #2c2c2c;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

/* Quest */
#dbcq-quest-text {
    margin: 1rem 0;
    font-size: 1.0rem;
}

/* Eingabefelder */
input[type="text"],
input[type="file"] {
    width: 100%;
    padding: 0.6rem;
    margin: 0.5rem 0 1rem 0;
    border: 1px solid #999;
    border-radius: 0.5rem;
    background-color: #1e1e1e;
    color: #f1f1f1;
}

/* Fortschrittsbalken */
#dbcq-progress {
    height: 10px;
    background-color: #444;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

#dbcq-progress-bar {
    height: 100%;
    width: 0;
    background-color: #00cc88;
    transition: width 0.3s ease-in-out;
}

/* Buttons */
#dbcq-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

#dbcq-buttons button {
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: bold;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.2s;
}

#dbcq_complete {
    background-color: #007acc;
    color: #fff;
}

#dbcq_complete:hover {
    background-color: #0090ff;
}

#dbcq_skip {
    background-color: #555;
    color: #eee;
}

#dbcq_skip:hover {
    background-color: #777;
}

/* Mobile Support */
@media (max-width: 480px) {
    #dbcq-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }

    #dbcq-card {
        padding: 1rem;
    }
}
