/* Learning Leadership Frontend Styles */
.ll-dashboard {
    direction: rtl;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.gradient-btn {
    background: linear-gradient(135deg, #0d9488 0%, #1e3a5f 100%);
}

.gradient-card {
    background: linear-gradient(135deg, #0d9488 0%, #1e3a5f 100%);
}

.tab-active {
    border-bottom: 3px solid #0d9488;
    color: #0d9488;
}

/* RTL Support */
html[dir="rtl"] .ll-dashboard {
    text-align: right;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.3s ease-out;
}

/* Custom Scrollbar */
.ll-dashboard ::-webkit-scrollbar {
    width: 6px;
}

.ll-dashboard ::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.ll-dashboard ::-webkit-scrollbar-thumb {
    background: #0d9488;
    border-radius: 3px;
}

/* File Upload Drag & Drop */
.file-drop-zone.dragover {
    border-color: #0d9488;
    background: rgba(13, 148, 136, 0.1);
}
