
/*# sourceMappingURL=custom.min.css.map */
.validation-summary-errors {
    color:red
}

.question-item.active {
    border-left: 3px solid #0d6efd;
    background: #f0f8ff;
    padding-left: 10px;
}

.task-handle {
    cursor: move;
    user-select: none;
    color: #888;
    font-weight: bold;
    text-align: center;
}

#question-info-box {
    background: #f8f9fa;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    font-size: 1rem;
}

#question-info-box .fw-semibold {
    color: #495057;
}

#question-info-box .fst-italic {
    color: #0d6efd;
}


.question-action-group {
    display: flex;
    gap: 4px;
    align-items: center;
    flex-shrink: 0;
}

.question-action-group .btn {
    min-width: 32px;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    flex: 0 0 auto;
}

/* Optional: for better clickable area and alignment */
.btn-link {
    color: #aaa;
    font-size: 1.2rem;
}

.btn-link:focus {
    box-shadow: none;
}

.badge.bg-pink {
    background-color: #e83e8c;
    color: #fff;
}

@media (min-width: 992px) {
    .chat-wrapper {
        display: flex;
    }

    .file-manager-sidebar {
        flex: 0 0 50%;
        max-width: 50%;
        width: 50%;
    }

    .file-manager-content {
        flex: 0 0 50%;
        max-width: 50%;
        width: 50%;
    }
}

@media (max-width: 991.98px) {
    .file-manager-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1050;
        width: 85vw;
        max-width: 340px;
        height: 100vh;
        background: #fff;
        box-shadow: 0 0 20px rgba(0,0,0,0.15);
        transform: translateX(-100%);
        transition: transform 0.3s;
    }

        .file-manager-sidebar.menubar-show {
            transform: translateX(0);
        }

    .chat-wrapper {
        flex-direction: column !important;
    }
}

@media (max-width: 767.98px) {
    #questionsAnswersTable th, #questionsAnswersTable td {
        font-size: 13px;
        padding: 0.4rem 0.3rem;
    }

    .ps-4 {
        padding-left: 1.5rem !important;
    }
}



/* Enhanced User Management Styles */
.course-enrollment-notice, .independent-exam-notice {
    background: linear-gradient(135deg, #e3f2fd 0%, #f8f9fa 100%);
    border: 1px solid #90caf9;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.independent-exam-notice {
    background: linear-gradient(135deg, #fff3e0 0%, #fafafa 100%);
    border-color: #ffb74d;
}

.notice-icon {
    color: #1976d2;
    font-size: 1.5rem;
    margin-right: 12px;
}

.independent-exam-notice .notice-icon {
    color: #f57c00;
}

.table-success {
    --bs-table-bg: rgba(25, 135, 84, 0.05) !important;
}

.spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Enhanced badges */
.badge.fs-6 {
    font-size: 0.9rem !important;
    padding: 0.5rem 0.75rem;
    font-weight: 600;
}

/* User table enhancements */
#userExamTable tbody tr:hover {
    background-color: rgba(0,0,0,0.02);
}

.avatar-title {
    font-size: 0.8rem;
    font-weight: 600;
}
