.snapgauge-quiz-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    font-family: 'Noto Sans Telugu', Arial, sans-serif;
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.quiz-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px 20px;
    text-align: center;
}

.header-content {
    max-width: 800px;
    margin: 0 auto;
}

.category-info .category-title {
    margin: 0 0 20px 0;
    font-size: 28px;
    font-weight: 600;
}

.welcome-message-header {
    margin: 20px 0;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.welcome-message-header .welcome-text {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
}

.welcome-message-header .welcome-english {
    font-size: 16px;
    opacity: 0.9;
    font-style: italic;
}

/* Category-specific Welcome Messages */
.category-welcome-messages {
    margin: 20px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    border-left: 4px solid #667eea;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.category-welcome-messages .welcome-message {
    margin-bottom: 15px;
}

.category-welcome-messages .welcome-message:last-child {
    margin-bottom: 0;
}

.welcome-text-telugu {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 10px 0;
    line-height: 1.6;
    font-family: 'Noto Sans Telugu', Arial, sans-serif;
}

.welcome-text-english {
    font-size: 16px;
    font-weight: 500;
    color: #34495e;
    margin: 0;
    line-height: 1.5;
    font-style: italic;
}

/* Welcome message previews in category cards */
.welcome-preview-telugu {
    font-size: 14px;
    color: #2c3e50;
    margin: 0 0 8px 0;
    line-height: 1.5;
    font-family: 'Noto Sans Telugu', Arial, sans-serif;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.welcome-preview-english {
    font-size: 13px;
    color: #7f8c8d;
    margin: 0;
    line-height: 1.4;
    font-style: italic;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Enhanced category cards with welcome messages */
.category-card .category-description {
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.category-card:hover .welcome-preview-telugu,
.category-card:hover .welcome-preview-english {
    color: #667eea;
    transition: color 0.3s ease;
}

/* Welcome message styling in quiz config */
.category-info-banner .category-welcome-messages {
    background: rgba(255, 255, 255, 0.1);
    border-left: 4px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.category-info-banner .welcome-text-telugu {
    color: white;
    font-size: 16px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.category-info-banner .welcome-text-english {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments for welcome messages */
@media (max-width: 768px) {
    .category-welcome-messages {
        padding: 15px;
        margin: 15px 0;
    }
    
    .welcome-text-telugu {
        font-size: 16px;
    }
    
    .welcome-text-english {
        font-size: 14px;
    }
    
    .welcome-preview-telugu {
        font-size: 13px;
    }
    
    .welcome-preview-english {
        font-size: 12px;
    }
}

.timer-info {
    margin-top: 15px;
    font-size: 16px;
    font-weight: 500;
}

.quiz-section {
    padding: 30px;
    background: white;
}


.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.category-card {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    background: #fafafa;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.category-card:hover {
    border-color: #667eea;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
    transform: translateY(-2px);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.category-header {
    margin-bottom: 15px;
}

.category-title-telugu {
    font-size: 18px;
    color: #2d3748;
    margin: 0 0 5px 0;
    font-weight: 600;
}

.category-title-english {
    font-size: 16px;
    color: #667eea;
    margin: 0;
    font-weight: 500;
}

.category-description {
    margin-bottom: 20px;
    color: #2d3748;
    line-height: 1.6;
    min-height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 15px;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.description-telugu {
    font-size: 16px;
    margin: 0 0 8px 0;
    font-weight: 600;
    color: #1a202c;
}

.description-english {
    font-size: 15px;
    margin: 0;
    opacity: 0.9;
    color: #4a5568;
    font-style: italic;
    font-weight: 500;
}

.description-placeholder {
    font-size: 14px;
    margin: 0;
    opacity: 0.7;
    color: #718096;
    font-style: italic;
    text-align: center;
}

/* Quiz Message Container */
.quiz-message-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.quiz-message {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.quiz-message.error {
    border: 3px solid #dc3545;
    background: #fff5f5;
}

.quiz-message.warning {
    border: 3px solid #ffc107;
    background: #fffbf0;
}

.quiz-message.success {
    border: 3px solid #28a745;
    background: #f0fff4;
}

#quiz-message-text {
    font-size: 18px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 25px;
    display: block;
    line-height: 1.6;
}

.quiz-message-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.quiz-message-buttons .quiz-btn {
    min-width: 120px;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
}

/* Unanswered Questions Modal */
.unanswered-questions-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    padding: 20px;
    box-sizing: border-box;
}

.unanswered-questions-modal {
    background: #ffffff;
    border-radius: 16px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.unanswered-header {
    padding: 30px 30px 20px;
    text-align: center;
    border-bottom: 2px solid #f0f4f8;
}

.unanswered-header h3 {
    margin: 0 0 15px;
    color: #2d3748;
    font-size: 24px;
    font-weight: 700;
}

.unanswered-header p {
    margin: 8px 0;
    color: #4a5568;
    font-size: 16px;
    line-height: 1.5;
}

.unanswered-header .english-text {
    color: #718096;
    font-size: 14px;
    font-style: italic;
}

.unanswered-questions-grid {
    padding: 20px 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
}

.unanswered-question-card {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.unanswered-question-card:hover {
    border-color: #3182ce;
    background: #ebf8ff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(49, 130, 206, 0.15);
}

.question-number {
    font-size: 14px;
    font-weight: 700;
    color: #3182ce;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.question-preview {
    font-size: 16px;
    color: #2d3748;
    line-height: 1.5;
    margin-bottom: 15px;
    min-height: 48px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.question-actions {
    text-align: center;
}

.goto-question-btn {
    background: linear-gradient(135deg, #3182ce 0%, #2c5aa0 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.goto-question-btn:hover {
    background: linear-gradient(135deg, #2c5aa0 0%, #2a4d8d 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(49, 130, 206, 0.3);
}

.unanswered-actions {
    padding: 20px 30px 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
    border-top: 2px solid #f0f4f8;
}

.unanswered-actions .quiz-btn {
    min-width: 160px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.unanswered-actions .quiz-btn.secondary {
    background: #e2e8f0;
    color: #4a5568;
    border: 2px solid #cbd5e0;
}

.unanswered-actions .quiz-btn.secondary:hover {
    background: #cbd5e0;
    border-color: #a0aec0;
}

.unanswered-actions .quiz-btn.primary {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
    border: 2px solid transparent;
}

.unanswered-actions .quiz-btn.primary:hover {
    background: linear-gradient(135deg, #38a169 0%, #2f855a 100%);
}

/* Quiz Header and Navigation */
.question-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #e2e8f0;
    gap: 10px;
}

.question-navigation .quiz-btn.small {
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 13px;
    padding: 8px 12px;
}

.quiz-btn.small {
    padding: 8px 16px;
    font-size: 14px;
    min-width: auto;
}

.quiz-btn.small.secondary {
    background: #f7fafc;
    color: #4a5568;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.quiz-btn.small.secondary:hover {
    background: #edf2f7;
    border-color: #cbd5e0;
    color: #2d3748;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .unanswered-questions-overlay {
        padding: 10px;
    }
    
    .unanswered-header {
        padding: 20px 20px 15px;
    }
    
    .unanswered-header h3 {
        font-size: 20px;
    }
    
    .unanswered-questions-grid {
        padding: 15px 20px;
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .unanswered-question-card {
        padding: 15px;
    }
    
    .unanswered-actions {
        padding: 15px 20px 20px;
        flex-direction: column;
    }
    
    .unanswered-actions .quiz-btn {
        width: 100%;
    }
}

/* Confirmation Modal */
.confirmation-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10001;
    animation: fadeIn 0.3s ease-out;
}

.confirmation-modal {
    background: #ffffff;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease-out;
    overflow: hidden;
}

.confirmation-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px 30px;
    text-align: center;
}

.confirmation-header h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
}

.confirmation-content {
    padding: 30px;
    text-align: center;
}

.telugu-message {
    font-size: 18px;
    font-weight: 600;
    color: #2d3748;
    margin: 0 0 15px;
    line-height: 1.6;
}

.english-message {
    font-size: 16px;
    color: #4a5568;
    margin: 0;
    line-height: 1.5;
    font-style: italic;
}

.confirmation-actions {
    padding: 0 30px 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.confirmation-actions .quiz-btn {
    min-width: 120px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.confirmation-actions .quiz-btn.secondary {
    background: #e2e8f0;
    color: #4a5568;
    border: 2px solid #cbd5e0;
}

.confirmation-actions .quiz-btn.secondary:hover {
    background: #cbd5e0;
    border-color: #a0aec0;
    transform: translateY(-1px);
}

.confirmation-actions .quiz-btn.primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: 2px solid transparent;
}

.confirmation-actions .quiz-btn.primary:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsiveness for Confirmation Modal */
@media (max-width: 768px) {
    .confirmation-modal {
        margin: 20px;
        width: calc(100% - 40px);
    }
    
    .confirmation-header {
        padding: 20px;
    }
    
    .confirmation-header h3 {
        font-size: 20px;
    }
    
    .confirmation-content {
        padding: 25px 20px;
    }
    
    .telugu-message {
        font-size: 16px;
    }
    
    .english-message {
        font-size: 14px;
    }
    
    .confirmation-actions {
        padding: 0 20px 25px;
        flex-direction: column;
    }
    
    .confirmation-actions .quiz-btn {
        width: 100%;
    }
}


.category-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 10px;
    background: #edf2f7;
    border-radius: 6px;
    font-size: 14px;
}

.question-count {
    color: #2d3748;
    font-weight: 600;
}

.timer-info {
    color: #667eea;
    font-weight: 500;
}

.category-info-banner {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 8px;
}

.category-info-banner h3 {
    margin: 0 0 5px 0;
    font-size: 24px;
}

.category-subtitle {
    margin: 0 0 10px 0;
    font-size: 16px;
    opacity: 0.9;
}


.config-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.form-group select,
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group select:focus,
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.form-group .description {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

.quiz-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.quiz-btn.primary {
    background: #667eea;
    color: white;
}

.quiz-btn.primary:hover {
    background: #5a67d8;
    transform: translateY(-2px);
}

.quiz-btn.secondary {
    background: #e2e8f0;
    color: #4a5568;
}

.quiz-btn.secondary:hover {
    background: #cbd5e0;
}

.quiz-btn.success {
    background: #48bb78;
    color: white;
}

.quiz-btn.success:hover {
    background: #38a169;
}

.quiz-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.welcome-messages {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    text-align: center;
}

.welcome-telugu {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: bold;
}

.welcome-english {
    font-size: 16px;
    opacity: 0.9;
}

.no-categories {
    text-align: center;
    padding: 40px;
    color: #666;
}

.error-message {
    display: none;
    color: #b00020;
    background: #fdecea;
    border: 1px solid #f5c6cb;
    padding: 12px;
    border-radius: 6px;
    margin: 10px 0 20px 0;
    font-weight: bold;
}

.progress-bar {
    background: #e2e8f0;
    height: 8px;
    border-radius: 4px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.progress-fill {
    background: linear-gradient(90deg, #667eea, #764ba2);
    height: 100%;
    border-radius: 4px;
    transition: width 0.3s ease;
    width: 0%;
}

.progress-text {
    position: absolute;
    top: -25px;
    right: 0;
    font-size: 14px;
    font-weight: bold;
    color: #4a5568;
}

.question-slide {
    animation: slideIn 0.3s ease-in-out;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.question-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.question-number {
    font-size: 18px;
    font-weight: bold;
    color: #667eea;
}

.difficulty-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    color: white;
}

.difficulty-easy { background: #48bb78; }
.difficulty-medium { background: #ed8936; }
.difficulty-hard { background: #f56565; }

.question-content h3 {
    font-size: 20px;
    margin-bottom: 25px;
    line-height: 1.5;
    color: #2d3748;
}

.options {
    margin-bottom: 30px;
}

.option-label {
    display: block;
    margin-bottom: 15px;
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.option-label:hover {
    border-color: #667eea;
    background: #f7fafc;
}

.option-label input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.option-label input[type="radio"]:checked + .option-text {
    color: #667eea;
    font-weight: bold;
}

.option-label:has(input[type="radio"]:checked) {
    border-color: #667eea;
    background: #edf2f7;
}

.option-text {
    font-size: 16px;
    line-height: 1.4;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.quiz-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 15px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.option-image {
    max-width: 150px;
    height: auto;
    border-radius: 4px;
    margin-top: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.question-image {
    text-align: center;
    margin: 20px 0;
}


.results-header {
    text-align: center;
    margin-bottom: 30px;
}

.category-result-info {
    color: #667eea;
    font-size: 16px;
    margin-top: 10px;
}

.score-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.score-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.score-details p {
    margin: 8px 0;
    font-size: 16px;
}

.performance-message {
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    font-size: 18px;
    font-weight: bold;
}

.performance-message.excellent {
    background: #c6f6d5;
    color: #22543d;
}

.performance-message.good {
    background: #fef5e7;
    color: #744210;
}

.performance-message.average {
    background: #fed7d7;
    color: #742a2a;
}

.results-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.rating-stars {
    display: flex;
    gap: 5px;
    margin: 10px 0;
}

.star {
    font-size: 24px;
    cursor: pointer;
    opacity: 0.3;
    transition: opacity 0.3s;
}

.star:hover,
.star.active {
    opacity: 1;
}

.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #e2e8f0;
    border-top: 4px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.timer-warning {
    color: #ff6b35 !important;
    font-weight: bold;
    animation: pulse 1s infinite;
}

.timer-critical {
    color: #ff0000 !important;
    font-weight: bold;
    animation: blink 0.5s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}

@media (max-width: 768px) {
    .snapgauge-quiz-wrapper {
        margin: 10px;
    }
    
    .quiz-section {
        padding: 20px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .config-options {
        grid-template-columns: 1fr;
    }
    
    .score-display {
        flex-direction: column;
        gap: 20px;
    }
    
    .results-actions {
        flex-direction: column;
    }
    
    .quiz-actions {
        flex-direction: column;
    }
}
