.mcq-option {
    position: relative;
}

.remove-option {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    color: #e74c3c;
    cursor: pointer;
}

.question-text {
    flex-grow: 1;
}

.correct-option {
    background-color: rgba(46, 204, 113, 0.1);
    border-left: 3px solid #2ecc71 !important;
}

.option-text {
    display: flex;
    align-items: center;
}

/*comment*/

/* Ensure tab content takes full width */
.tab-content {
    width: 100%;
    padding-top: 20px; /* Add some spacing */
}

/* Style for fillups cards */
.fillup-card {
    border-left: 3px solid #17a2b8;
    margin-bottom: 15px;
}

.fillup-card .card-header {
    background-color: #17a2b8;
    color: white;
}

/* Make sure tab content doesn't jump */
.tab-pane {
    transition: all 0.3s ease;
}
/* Fillups specific styles */
.fillup-card {
    border-left: 3px solid #17a2b8;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.fillup-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.action-buttons {
    display: flex;
    gap: 8px;
}

.btn-edit-fillup {
    background-color: #17a2b8;
    border-color: #17a2b8;
    color: white;
}

.btn-edit-fillup:hover {
    background-color: #138496;
    border-color: #117a8b;
}

.btn-delete-fillup {
    background-color: #dc3545;
    border-color: #dc3545;
    color: white;
}

.btn-delete-fillup:hover {
    background-color: #c82333;
    border-color: #bd2130;
}

/* Button animations */
.btn-edit-fillup, .btn-delete-fillup {
    transition: all 0.2s ease;
    transform: scale(1);
}

.btn-edit-fillup:hover, .btn-delete-fillup:hover {
    transform: scale(1.05);
}

.btn-edit-fillup:active, .btn-delete-fillup:active {
    transform: scale(0.98);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .action-buttons {
        margin-top: 10px;
        justify-content: flex-end;
    }
    
    .btn-edit-fillup, .btn-delete-fillup {
        padding: 0.25rem 0.5rem;
        font-size: 0.875rem;
    }
}
/* Add to quiz.css or style.css */

/* Tab content visibility fix */
.tab-pane {
    display: none;
}
.tab-pane.active {
    display: block;
}

/* Standardize card styles */
.card {
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.card-header {
    background-color: #4e73df;
    color: white;
    border-radius: 0.5rem 0.5rem 0 0 !important;
    padding: 1rem 1.25rem;
    font-weight: 600;
}

/* Standardize button styles */
.btn {
    border-radius: 0.25rem;
    padding: 0.375rem 0.75rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn-primary {
    background-color: #4e73df;
    border-color: #4e73df;
}

.btn-primary:hover {
    background-color: #2e59d9;
    border-color: #2653d4;
}

.btn-danger {
    background-color: #e74a3b;
    border-color: #e74a3b;
}

.btn-danger:hover {
    background-color: #d52a1a;
    border-color: #c82414;
}

/* Form improvements */
.form-control, .form-select {
    border-radius: 0.25rem;
    padding: 0.375rem 0.75rem;
    border: 1px solid #d1d3e2;
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* Responsive improvements */
@media (max-width: 768px) {
    .card {
        margin-bottom: 1rem;
    }
    
    .action-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .btn {
        width: 100%;
    }
}

/* List group items */
.list-group-item {
    border-left: none;
    border-right: none;
    padding: 1rem 1.25rem;
    transition: all 0.2s ease;
}

.list-group-item:hover {
    background-color: #f8f9fc;
}

/* MCQ specific styles */
.mcq-option {
    position: relative;
    margin-bottom: 0.5rem;
}

.remove-option {
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    color: #e74c3c;
    cursor: pointer;
}

.correct-option {
    background-color: rgba(46, 204, 113, 0.1);
    border-left: 3px solid #2ecc71 !important;
}

/* Fillups specific styles */
.fillup-card {
    border-left: 3px solid #17a2b8;
    transition: all 0.3s ease;
}

.fillup-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.btn-edit-fillup {
    background-color: #17a2b8;
    border-color: #17a2b8;
    color: white;
}

.btn-edit-fillup:hover {
    background-color: #138496;
    border-color: #117a8b;
}

.btn-delete-fillup {
    background-color: #dc3545;
    border-color: #dc3545;
    color: white;
}

.btn-delete-fillup:hover {
    background-color: #c82333;
    border-color: #bd2130;
}

