.tutor-teacher-code-container {
    margin-top: 20px;
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.tutor-teacher-code-container .tutor-form-group {
    margin-bottom: 15px;
}

.tutor-teacher-code-container .tutor-form-control {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
}

.tutor-teacher-code-container.hide-form {
    padding: 0;
    margin: 0;
    height: 0;
    overflow: hidden;
    border: none;
}

#tutor-teacher-code-result {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    margin: 0;
}

#tutor-teacher-code-result.show {
    max-height: 200px;
    margin-top: 15px;
}

.tutor-alert {
    padding: 12px 15px;
    border-radius: 4px;
    margin-bottom: 0;
}

.tutor-alert-info {
    background-color: #e7f3fe;
    color: #0c5460;
    border-left: 4px solid #0073aa;
}

.tutor-alert-success {
    background-color: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.tutor-alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

/* تنسيقات الفورم الإضافي */
.tutor-mt-20 .teacher-code-form {
    padding: 16px;
    background: #f9f9f9;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.tutor-mt-20 .teacher-code-form.hide-form {
    padding: 0;
    margin: 0;
    height: 0;
    overflow: hidden;
    border: none;
}