/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
}

.social-floating {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
}

.social-floating .social-icon {
    display: block;
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-size: 20px;
    color: white;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.social-floating .social-icon:hover {
    transform: translateY(-5px);
}

.social-floating .facebook {
    background-color: #3b5998;
}

.social-floating .twitter {
    background-color: #1da1f2;
}

.social-floating .whatsapp {
    background-color: #25d366;
}

/* Quiz Styles */
.question-container {
    min-height: 400px;
}

.progress {
    height: 10px;
}

.score-circle {
    max-width: 200px;
    margin: 0 auto;
}
.text-danger {
    color: #dc3545 !important;
}
.fw-bold {
    font-weight: bold !important;
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .quiz-info .col-md-4 {
        margin-bottom: 10px;
    }
    
    .pricing-card {
        margin-bottom: 20px;
    }
}

/* Animation for correct/wrong answers */
@keyframes correctAnswer {
    0% { background-color: inherit; }
    50% { background-color: rgba(76, 175, 80, 0.3); }
    100% { background-color: inherit; }
}

@keyframes wrongAnswer {
    0% { background-color: inherit; }
    50% { background-color: rgba(244, 67, 54, 0.3); }
    100% { background-color: inherit; }
}

.correct {
    animation: correctAnswer 1.5s ease;
}

.wrong {
    animation: wrongAnswer 1.5s ease;
}
#quiz-timer {
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    padding: 0.35rem 0.7rem;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}