/* Custom CSS for To & Fro - Matching cvdynamic.com Design */

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --secondary-color: #64748b;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --info-color: #06b6d4;
    --light-bg: #f8fafc;
    --white: #ffffff;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --border-color: #e2e8f0;
    --sidebar-bg: #1e293b;
    --sidebar-text: #ffffff;
    --sidebar-hover: #334155;
    --sidebar-active: #3b82f6;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Global Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-primary);
    background-color: var(--light-bg);
    line-height: 1.5;
    font-size: 14px;
    font-weight: 400;
}

/* Modern Navbar */
.navbar {
    background-color: var(--white) !important;
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.navbar-brand {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: var(--primary-color) !important;
    text-decoration: none;
}

.navbar-brand:hover {
    color: var(--primary-dark) !important;
}

.nav-link {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: var(--text-primary) !important;
    padding: 8px 16px !important;
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-link.active {
    color: var(--primary-color) !important;
    font-weight: 600;
}

/* Modern Buttons - Matching cvdynamic.com */
.btn {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.2s ease;
    border: none;
    line-height: 1.5;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    box-shadow: var(--shadow-md);
}

.btn-lg {
    font-size: 16px;
    padding: 12px 24px;
}

.btn-sm {
    font-size: 12px;
    padding: 6px 12px;
}

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

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

/* Modern Cards */
.card {
    border: none;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-md);
    transition: box-shadow 0.2s ease;
    background-color: var(--white);
    overflow: hidden;
}

/* Remove hover lift effect to match cvdynamic.com */
.card:hover {
    box-shadow: var(--shadow-md);
}

.card-header {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 20px;
    font-weight: 600;
    font-size: 16px;
    color: var(--text-primary);
}

.card-body {
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
}

/* Login Page Styles */
.login-container {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

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

.login-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    text-align: center;
}

.login-subtitle {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 400;
}

/* Form Labels - Matching cvdynamic.com exactly (Bootstrap 5.3 default) */
.form-label {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    display: block;
    line-height: 1.5;
}

/* Form Controls - Matching cvdynamic.com exactly (Bootstrap 5.3 default) */
.form-control,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="tel"],
input[type="date"],
input[type="time"],
textarea {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-primary);
    background-color: var(--white);
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    padding: 0.375rem 0.75rem;
    width: 100%;
    line-height: 1.5;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    box-sizing: border-box;
    appearance: none;
}

.form-control:focus,
input:focus,
textarea:focus {
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.form-control::placeholder,
input::placeholder,
textarea::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.form-control:disabled,
input:disabled,
textarea:disabled,
select:disabled {
    background-color: #f3f4f6;
    color: #6b7280;
    cursor: not-allowed;
}

/* Dashboard Sidebar - Matching cvdynamic.com exactly */
.sidebar {
    position: fixed;
    top: 64px;
    bottom: 0;
    left: 0;
    z-index: 100;
    padding: 0;
    background-color: var(--sidebar-bg) !important;
    width: 240px;
    box-shadow: 2px 0 4px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    overflow-x: hidden;
}

.sidebar-sticky {
    position: relative;
    top: 0;
    height: 100vh;
    padding-top: 0;
    padding-bottom: 0;
    overflow-x: hidden;
    overflow-y: hidden;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

/* Sidebar content area - scrollable */
.sidebar-content {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding-bottom: 20px;
}


/* Sidebar Navigation Sections - Matching cvdynamic.com */
.sidebar-section {
    margin-bottom: 24px;
}

.sidebar-section:last-of-type {
    margin-bottom: 0;
}

.sidebar-section-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5) !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 20px;
    margin-bottom: 8px;
    display: block !important;
}

.sidebar .nav {
    flex-direction: column;
    padding: 0;
    list-style: none;
    margin: 0;
    display: block !important;
}

.sidebar .nav-item {
    margin: 0;
    list-style: none;
    display: block !important;
}

/* Force visibility of sidebar menu items */
.sidebar ul.nav,
.sidebar .nav-item,
.sidebar .nav-link {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.sidebar .nav-link {
    display: flex !important;
}

.sidebar .nav-link {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8) !important;
    padding: 10px 20px;
    margin: 0;
    border-radius: 0;
    transition: all 0.2s ease;
    display: flex !important;
    align-items: center;
    text-decoration: none;
    border-left: 3px solid transparent;
    background-color: transparent !important;
}

.sidebar .nav-link i {
    width: 20px;
    margin-right: 12px;
    font-size: 16px;
    text-align: center;
    opacity: 0.8;
    color: inherit;
}

.sidebar .nav-link:hover {
    background-color: var(--sidebar-hover) !important;
    color: white !important;
    border-left-color: var(--sidebar-active);
}

.sidebar .nav-link:hover i {
    opacity: 1;
    color: inherit;
}

.sidebar .nav-link.active {
    background-color: var(--sidebar-hover) !important;
    color: white !important;
    border-left-color: var(--sidebar-active);
    font-weight: 500;
}

.sidebar .nav-link.active i {
    opacity: 1;
    color: inherit;
}

/* Sidebar Footer - Bottom Links (Home, Logout) */
.sidebar-footer {
    flex-shrink: 0;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background-color: var(--sidebar-bg);
}

.sidebar-footer .nav {
    padding: 0;
    margin: 0;
}

.sidebar-footer .nav-item {
    margin: 0;
}

.sidebar-footer .nav-link {
    padding: 10px 20px;
    color: rgba(255, 255, 255, 0.8) !important;
    display: flex !important;
    align-items: center;
}

.sidebar-footer .nav-link:hover {
    background-color: var(--sidebar-hover) !important;
    color: white !important;
}

.sidebar-footer .nav-link i {
    width: 20px;
    margin-right: 12px;
    font-size: 16px;
    text-align: center;
    opacity: 0.8;
    color: inherit;
}

/* Top Horizontal Navbar - Matching cvdynamic.com */
.top-navbar {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    height: 64px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 0 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.top-navbar-brand {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 32px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.top-navbar-brand i {
    color: var(--primary-color);
    font-size: 20px;
}

.top-navbar-brand:hover {
    color: var(--text-primary);
}

.top-navbar-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.top-navbar-menu-item {
    padding: 8px 16px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.top-navbar-menu-item:hover {
    background: var(--light-bg);
    color: var(--text-primary);
}

.top-navbar-menu-item.active {
    color: var(--primary-color);
    background: rgba(59, 130, 246, 0.1);
}

.top-navbar-right {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
}

.top-navbar-search-form {
    position: relative;
    width: 300px;
}

.top-navbar-search {
    position: relative;
    width: 100%;
}

.top-navbar-search input {
    width: 100%;
    padding: 8px 12px 8px 36px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
    background: var(--light-bg);
    transition: all 0.2s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.top-navbar-search input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.top-navbar-search i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    cursor: pointer;
    z-index: 1;
}

.top-navbar-icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.top-navbar-icon-btn:hover {
    background: var(--light-bg);
    color: var(--text-primary);
}

.top-navbar-user {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 8px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.top-navbar-user:hover {
    background: var(--light-bg);
}

.top-navbar-user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.top-navbar-user-email {
    font-size: 14px;
    color: var(--text-primary);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Dashboard Content */
.dashboard-content {
    margin-left: 0;
    padding: 24px 32px;
    min-height: calc(100vh - 64px);
    width: 100%;
    background-color: var(--white);
    margin-top: 0;
}

@media (max-width: 767px) {
    .top-navbar {
        padding: 0 16px;
    }
    
    .top-navbar-menu {
        display: none;
    }
    
    .top-navbar-search-form {
        width: 200px;
    }
    
    .top-navbar-user-email {
        display: none;
    }
    
    .sidebar {
        top: 64px;
    }
}

@media (min-width: 768px) {
    .dashboard-content {
        margin-left: 240px;
        width: calc(100% - 240px);
    }
}

.dashboard-header {
    padding: 24px 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 32px;
}

.dashboard-header h1 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

/* Statistics Cards */
.stat-card {
    border-radius: 0.75rem;
    padding: 1.5rem;
    color: var(--white);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: none;
}

/* Remove hover lift effect to match cvdynamic.com */
.stat-card:hover {
    box-shadow: var(--shadow-md);
}

.stat-card-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 12px;
    font-weight: 500;
    opacity: 0.9;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-card-value {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin: 0;
}

/* Modern Tables */
.table {
    background-color: var(--white);
    border-radius: 0.75rem;
    overflow: hidden;
}

.table thead th {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--light-bg);
    border-bottom: 2px solid var(--border-color);
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.05em;
    padding: 10px 16px;
}

.table tbody td {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 13px;
    padding: 8px 16px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
    font-weight: normal;
}

/* Remove bold from consignment and booking numbers */
.table tbody td strong {
    font-weight: normal;
}

.table tbody tr:hover {
    background-color: var(--light-bg);
}

/* Badges */
.badge {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    font-weight: 500;
    font-size: 12px;
}

/* Alerts */
.alert {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    border-radius: 0.75rem;
    border: none;
    padding: 1rem 1.25rem;
    box-shadow: var(--shadow-sm);
}

/* Footer */
.footer {
    background-color: var(--white);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 16px;
}

.footer-link {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 14px;
}

.footer-link:hover {
    color: var(--primary-color);
}

.footer-copyright {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 14px;
}

/* Hero Sections */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 4rem 0;
}

/* Mobile Overlay */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99;
    transition: opacity 0.3s ease;
}

.sidebar-overlay.show {
    display: block;
}

/* Responsive Design */
@media (max-width: 767px) {
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        width: 250px;
        z-index: 101;
    }
    
    .sidebar.show {
        transform: translateX(0);
    }
    
    .sidebar-overlay.show {
        display: block;
    }
    
    .dashboard-content {
        margin-left: 0 !important;
        width: 100% !important;
        padding: 1rem;
    }
    
    .login-card {
        padding: 2rem 1.5rem;
    }
    
    .stat-card-value {
        font-size: 1.75rem;
    }
    
    .dashboard-header h1 {
        font-size: 1.5rem;
    }
}

/* Utility Classes */
.text-primary-custom {
    color: var(--primary-color) !important;
}

.bg-primary-custom {
    background-color: var(--primary-color) !important;
}

.shadow-custom {
    box-shadow: var(--shadow-md);
}

.rounded-custom {
    border-radius: 0.75rem;
}

/* Form Select - Matching cvdynamic.com exactly (Bootstrap 5.3 default) */
.form-select,
select {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-primary);
    background-color: var(--white);
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    padding: 0.375rem 2.25rem 0.375rem 0.75rem;
    line-height: 1.5;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    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='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 16px 12px;
    appearance: none;
}

.form-select:focus,
select:focus {
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Form Containers - Matching cvdynamic.com (no cards) */
/* Form Containers - Using modern-card structure like cvdynamic.com */
.form-container {
    background-color: transparent;
    padding: 0;
    margin-bottom: 0;
}

/* Form Groups - Matching cvdynamic.com (Bootstrap mb-3 = 1rem = 16px) */
.form-group {
    margin-bottom: 1rem;
}

.form-group:last-child {
    margin-bottom: 0;
}

/* Match Bootstrap mb-3 spacing for form rows */
.mb-3 {
    margin-bottom: 1rem !important;
}

/* Form Help Text */
.form-text,
.help-text {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.875rem;
    color: #6c757d;
    margin-top: 0.25rem;
    display: block;
}

/* Form Errors */
.form-control.is-invalid,
input.is-invalid,
textarea.is-invalid,
select.is-invalid {
    border-color: var(--danger-color);
}

.form-control.is-invalid:focus,
input.is-invalid:focus,
textarea.is-invalid:focus,
select.is-invalid:focus {
    border-color: var(--danger-color);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.invalid-feedback {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.875rem;
    color: var(--danger-color);
    margin-top: 0.25rem;
    display: block;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

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

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

