/* 남은 질문 수 표시 */
.remaining-questions {
    background: white;
    border-radius: clamp(0.5rem, 1vw, 1rem);
    padding: clamp(0.75rem, 1vw, 1rem);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05),
                0 10px 15px -3px rgba(0, 0, 0, 0.1),
                0 0 0 1px rgba(0, 0, 0, 0.05);
    text-align: center;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: auto;
    min-height: 60px;
    transition: box-shadow 0.3s ease;
}

.remaining-questions:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
                0 20px 25px -5px rgba(0, 0, 0, 0.1),
                0 0 0 1px rgba(0, 0, 0, 0.05);
}

.remaining-text {
    font-size: 2rem;
    color: #64748b;
    line-height: 1.2;
}

.remaining-count {
    font-size: 2.4rem;
    font-weight: 700;
    color: #3b82f6;
    line-height: 1;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .remaining-questions {
        padding: clamp(0.5rem, 0.75vw, 0.75rem);
    }

    .remaining-text {
        font-size: 1.8rem;
    }

    .remaining-count {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .remaining-questions {
        width: 100%;
        padding: 0.5rem;
    }

    .remaining-text {
        font-size: 1.7rem;
    }

    .remaining-count {
        font-size: 2rem;
    }
} 