:root {
    --primary-color: #2196F3;
    --secondary-color: #1976D2;
    --accent-color: #03A9F4;
    --text-primary: #2c3e50;
    --text-secondary: #7f8c8d;
    --background-light: #f8f9fa;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #2196F3, #03A9F4);
    --gradient-secondary: linear-gradient(135deg, #1976D2, #2196F3);
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --box-shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15);
    --border-radius: 15px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --sidebar-width: 280px;
    --topnav-height: 70px;
}

@font-face {
    font-family: 'Peyda100';
    src: url('../fonts/PeydaWebFaNum-Thin.4dc9791976a333b36501.woff2') format('woff2');
    font-weight: 100;
    font-style: normal;
}
@font-face {
    font-family: 'Peyda200';
    src: url('../fonts/PeydaWebFaNum-ExtraLight.cb12d7d5e9d6131c285f.woff') format('woff');
    font-weight: 200;
    font-style: normal;
}
@font-face {
    font-family: 'Peyda300';
    src: url('../fonts/PeydaWebFaNum-Light.e5c4aa2be8084a7fd345.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'Peyda400';
    src: url('../fonts/PeydaWebFaNum-Regular.a85fc388413d6fb2707b.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Peyda500';
    src: url('../fonts/PeydaWebFaNum-Medium.5ae94427bffc3c292a70.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Peyda600';
    src: url('../fonts/PeydaWebFaNum-SemiBold.bee880ae22ea6f0f046e.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'Peyda700';
    src: url('../fonts/PeydaWebFaNum-Bold.2106f9398d9799d35d55.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Peyda800';
    src: url('../fonts/PeydaWebFaNum-ExtraBold.5d0e4f0b138c23493636.woff') format('woff');
    font-weight: 800;
    font-style: normal;
}
@font-face {
    font-family: 'Peyda900';
    src: url('../fonts/PeydaWebFaNum-Black.ce8ffc88f1303a4ed135.woff') format('woff');
    font-weight: 900;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Peyda400', sans-serif !important;
    font-weight: 400 !important;
    direction: rtl;
    background: var(--background-light);
    overflow-x: hidden;
}

h1, h2 {
    font-family: 'Peyda900', sans-serif !important;
    font-weight: 900 !important;
}

h3, h4 {
    font-family: 'Peyda700', sans-serif !important;
    font-weight: 700 !important;
}

p {
    font-family: 'Peyda300', sans-serif !important;
    font-weight: 300 !important;
}

strong, b {
    font-family: 'Peyda800', sans-serif !important;
    font-weight: 800 !important;
}

em {
    font-family: 'Peyda200', sans-serif !important;
    font-weight: 200 !important;
}

a {
    font-family: 'Peyda500', sans-serif !important;
    font-weight: 500 !important;
}

small, .caption {
    font-family: 'Peyda100', sans-serif !important;
    font-weight: 100 !important;
}

button, input, textarea, select {
    font-family: 'Peyda600', sans-serif !important;
    font-weight: 600 !important;
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.loading-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-spinner {
    text-align: center;
    color: var(--primary-color);
}

.loading-spinner i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #e9ecef;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

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

/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background: white;
    box-shadow: var(--box-shadow);
    z-index: 1000;
    transform: translateX(0);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.sidebar.collapsed {
    transform: translateX(100%);
}

.sidebar-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e9ecef;
    text-align: center;
    position: relative;
}

.sidebar-header .brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-primary);
}

.sidebar-header .brand i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.sidebar-header .brand h4 {
    font-weight: 800;
    margin: 0;
}

.sidebar-close {
    display: none;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--text-secondary);
    font-size: 1.2rem;
    padding: 0.5rem;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    align-items: center;
    justify-content: center;
}

.sidebar-close:hover {
    background: var(--background-light);
    color: var(--text-primary);
    transform: translateY(-50%) rotate(90deg);
}

.sidebar-nav {
    padding: 1rem 0;
    flex: 1;
    overflow-y: auto;
}

.nav-section {
    margin-bottom: 2rem;
}

.nav-section-title {
    padding: 0 1.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.nav-item {
    margin-bottom: 0.5rem;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
    background: rgba(33, 150, 243, 0.1);
}

.nav-link.active {
    color: var(--primary-color);
    background: rgba(33, 150, 243, 0.15);
}

.nav-link.active::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-color);
}

.nav-link i {
    font-size: 1.1rem;
    margin-left: 0.75rem;
    width: 20px;
    text-align: center;
}

.nav-link .badge {
    margin-right: auto;
    background: var(--primary-color);
    color: white;
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
}

/* Main Content */
.main-content {
    margin-right: var(--sidebar-width);
    min-height: 100vh;
    transition: var(--transition);
}

.main-content.expanded {
    margin-right: 0;
}

/* Top Navigation */
.top-nav {
    background: white;
    height: var(--topnav-height);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sidebar-toggle {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: var(--transition);
}

.sidebar-toggle:hover {
    background: var(--background-light);
    color: var(--primary-color);
}

.page-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-item {
    position: relative;
}

.nav-btn {
    background: none;
    border: none;
    padding: 0.5rem;
    border-radius: 8px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.nav-btn:hover {
    background: var(--background-light);
    color: var(--primary-color);
}

.nav-btn .badge {
    position: absolute;
    top: 0;
    left: 0;
    background: #e74c3c;
    color: white;
    font-size: 0.7rem;
    padding: 0.2rem 0.4rem;
    border-radius: 10px;
    transform: translate(-30%, -30%);
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    padding: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.user-profile:hover {
    background: var(--background-light);
}

.user-profile img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
}

.user-profile span {
    font-weight: 500;
    color: var(--text-primary);
}

.user-profile i {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

/* Dashboard Content */
.dashboard-content {
    padding: 2rem;
}

/* Welcome Section */
.welcome-section {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--box-shadow);
}

.welcome-section h2 {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.welcome-section p {
    color: var(--text-secondary);
    margin: 0;
}

.welcome-image {
    border-radius: var(--border-radius);
    max-width: 100%;
}

/* Stat Cards */
.stat-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.stat-icon.bg-primary {
    background: var(--gradient-primary);
}

.stat-icon.bg-success {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
}

.stat-icon.bg-warning {
    background: linear-gradient(135deg, #FF9800, #FFB74D);
}

.stat-icon.bg-info {
    background: linear-gradient(135deg, #00BCD4, #4DD0E1);
}

.stat-info h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
}

.stat-info p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
}

/* Dashboard Cards */
.dashboard-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 2rem;
    overflow: hidden;
}

.card-header {
    padding: 1.5rem;
    border-bottom: 1px solid #f8f9fa;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-header h5 {
    margin: 0;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
}

.card-header h5 i {
    color: var(--primary-color);
}

.card-body {
    padding: 1.5rem;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(33, 150, 243, 0.25);
}

.form-control.is-invalid {
    border-color: #dc3545;
}

.invalid-feedback {
    display: block;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 6 7 7 7-7'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: left 0.75rem center;
    background-size: 16px 12px;
    padding-left: 2.5rem;
}

/* Buttons */
.btn {
    border-radius: 10px;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: var(--transition);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    text-decoration: none;
    justify-content: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-hover);
    color: white;
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: white;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-hover);
    color: white;
}

.btn-success {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    color: white;
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-hover);
    color: white;
}

.btn-warning {
    background: linear-gradient(135deg, #FF9800, #FFB74D);
    color: white;
}

.btn-danger {
    background: linear-gradient(135deg, #f44336, #e57373);
    color: white;
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-outline-secondary {
    border: 2px solid var(--text-secondary);
    color: var(--text-secondary);
    background: transparent;
}

.btn-outline-secondary:hover {
    background: var(--text-secondary);
    color: white;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Tables */
.table-responsive {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.table {
    margin: 0;
    width: 100%;
}

.table th {
    background: #f8f9fa;
    border-top: none;
    border-bottom: 2px solid #e9ecef;
    font-weight: 600;
    color: var(--text-primary);
    padding: 1rem 0.75rem;
}

.table td {
    border-top: 1px solid #f8f9fa;
    padding: 1rem 0.75rem;
    vertical-align: middle;
}

.table tbody tr:hover {
    background: rgba(33, 150, 243, 0.05);
}

/* Status Badges */
.status-badge {
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
}

.status-badge.active {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
}

.status-badge.inactive {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
}

.status-badge.pending {
    background: rgba(255, 152, 0, 0.2);
    color: #FF9800;
}

.status-badge.paid {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
}

.status-badge.failed {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
}

/* Auth Pages */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    padding: 2rem;
}

.auth-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-hover);
    padding: 3rem;
    width: 100%;
    max-width: 450px;
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header .logo {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.auth-header h1 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.auth-header p {
    color: var(--text-secondary);
}

.auth-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

/* Certificate Display */
.certificate-container {
    text-align: center;
    padding: 2rem;
}

.certificate-preview {
    max-width: 800px;
    margin: 0 auto 2rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow-hover);
}

.certificate-preview img {
    width: 100%;
    height: auto;
    display: block;
}

.certificate-info {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: right;
}

.certificate-code {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Alerts */
.alert {
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    border: none;
}

.alert-success {
    background: rgba(76, 175, 80, 0.1);
    color: #2E7D32;
    border-right: 4px solid #4CAF50;
}

.alert-danger {
    background: rgba(244, 67, 54, 0.1);
    color: #C62828;
    border-right: 4px solid #f44336;
}

.alert-warning {
    background: rgba(255, 152, 0, 0.1);
    color: #E65100;
    border-right: 4px solid #FF9800;
}

.alert-info {
    background: rgba(33, 150, 243, 0.1);
    color: #1565C0;
    border-right: 4px solid var(--primary-color);
}

/* Quick Actions */
.quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.quick-action {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--text-secondary);
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

.quick-action:hover {
    background: var(--background-light);
    color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.quick-action i {
    font-size: 2rem;
    color: var(--primary-color);
}

.quick-action-content h6 {
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.quick-action-content p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* File Upload */
.file-upload {
    position: relative;
    display: inline-block;
    width: 100%;
}

.file-upload-input {
    display: none;
}

.file-upload-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 2rem;
    border: 2px dashed #e9ecef;
    border-radius: var(--border-radius);
    background: #f8f9fa;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-secondary);
}

.file-upload-label:hover {
    border-color: var(--primary-color);
    background: rgba(33, 150, 243, 0.05);
    color: var(--primary-color);
}

.file-upload-preview {
    margin-top: 1rem;
    text-align: center;
}

.file-upload-preview img {
    max-width: 200px;
    max-height: 200px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* Responsive Design */
@media (max-width: 1199px) {
    .sidebar {
        transform: translateX(100%);
    }
    
    .sidebar.show {
        transform: translateX(0);
    }
    
    .sidebar.show .sidebar-close {
        display: flex;
    }
    
    .main-content {
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    :root {
        --sidebar-width: 100%;
    }
    
    .top-nav {
        padding: 0 1rem;
    }
    
    .dashboard-content {
        padding: 1rem;
    }
    
    .stat-card {
        text-align: center;
        flex-direction: column;
    }
    
    .nav-right {
        gap: 0.5rem;
    }
    
    .user-profile span {
        display: none;
    }
    
    .page-title {
        font-size: 1.2rem;
    }
    
    .auth-card {
        padding: 2rem;
        margin: 1rem;
    }
    
    .quick-actions {
        grid-template-columns: 1fr;
    }
    
    .table-responsive {
        font-size: 0.875rem;
    }
}

@media (max-width: 576px) {
    .welcome-section {
        padding: 1.5rem;
    }
    
    .card-header,
    .card-body {
        padding: 1rem;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .btn {
        padding: 0.5rem 1rem;
    }
    
    .auth-card {
        padding: 1.5rem;
    }
}

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

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

.animate-fade-in {
    animation: fadeInUp 0.6s ease-out;
}

.animate-slide-in {
    animation: slideInRight 0.6s ease-out;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 6px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Utility Classes */
.text-primary { color: var(--primary-color) !important; }
.text-secondary { color: var(--text-secondary) !important; }
.text-success { color: #4CAF50 !important; }
.text-danger { color: #f44336 !important; }
.text-warning { color: #FF9800 !important; }
.text-info { color: #00BCD4 !important; }

.bg-primary { background: var(--gradient-primary) !important; }
.bg-secondary { background: var(--gradient-secondary) !important; }
.bg-light { background: var(--background-light) !important; }

.d-none { display: none !important; }
.d-block { display: block !important; }
.d-flex { display: flex !important; }

.justify-content-center { justify-content: center !important; }
.justify-content-between { justify-content: space-between !important; }
.align-items-center { align-items: center !important; }

.text-center { text-align: center !important; }
.text-right { text-align: right !important; }
.text-left { text-align: left !important; }

.mt-1 { margin-top: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }

.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }

.p-1 { padding: 0.25rem !important; }
.p-2 { padding: 0.5rem !important; }
.p-3 { padding: 1rem !important; }
.p-4 { padding: 1.5rem !important; }
.p-5 { padding: 3rem !important; }

.w-100 { width: 100% !important; }
.h-100 { height: 100% !important; }

.border-radius { border-radius: var(--border-radius) !important; }
.box-shadow { box-shadow: var(--box-shadow) !important; }

.table-responsive{
    overflow: scroll !important;
}