/* Minimal additional styles for Quizes app, if needed */
.quiz-app-container {
    max-width: 700px;
    margin: 100px auto 40px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    padding: 1rem 1.5rem 1rem;
    text-align: center;
    position: relative;
}

#quizContainer {
    margin-top: 0;
}

@media (max-width: 600px) {
    .quiz-app-container {
        margin-top: 12px;
        padding-left: 1rem;
        padding-right: 1rem;
        border-radius: 14px;
    }
}

@media (max-height: 500px) and (orientation: landscape) {
    .quiz-app-container {
        margin-top: 8px;
        padding: 1rem;
    }
}

.quiz-hear-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: none;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    cursor: pointer;
    transition: border-color 0.15s;
    flex-shrink: 0;
}

.quiz-hear-btn:hover {
    border-color: #999;
}

.quiz-category-select {
    width: 100%;
    padding: 8px 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    background: #fafafa;
    cursor: pointer;
    outline: none;
    transition: border-color 0.15s;
}

.quiz-category-select:focus {
    border-color: #90caf9;
}
