/* Add here all your css styles (customizations) */

/* ========================================
   Modern Navigation Bar Styles
   ======================================== */

/* Header Container */
.modern-header {
    background: #ffffff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.modern-header .u-header__section {
    background: #ffffff !important;
    padding: 0.75rem 0;
}

.modern-header.header-scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

/* Logo */
.modern-logo {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.modern-logo:hover {
    opacity: 0.85;
}

/* Navigation Items */
.modern-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modern-nav-item {
    position: relative;
}

.modern-nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem !important;
    color: #4a5568 !important;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none !important;
    position: relative;
}

.modern-nav-link i {
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.modern-nav-link:hover {
    background: #f7fafc;
    color: #2d3748 !important;
    transform: translateY(-1px);
}

.modern-nav-link:hover i {
    transform: scale(1.1);
}

.modern-nav-link.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.modern-nav-link.active i {
    color: #ffffff !important;
}

.modern-nav-link.active span {
    color: #ffffff !important;
}

/* Dropdown Styles */
.modern-dropdown .dropdown-toggle::after {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.modern-dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
}

.modern-dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 0.75rem;
    margin-top: 0.75rem !important;
    min-width: 220px;
    animation: dropdownSlide 0.3s ease;
}

@keyframes dropdownSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modern-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: #4a5568;
    border-radius: 25px;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.modern-dropdown-item i {
    width: 20px;
    font-size: 1rem;
    color: #718096;
    transition: all 0.2s ease;
}

.modern-dropdown-item:hover {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    color: #2d3748;
    transform: translateX(4px);
    text-decoration: none;
}

.modern-dropdown-item:hover i {
    color: #667eea;
}

.modern-dropdown-item.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff !important;
}

.modern-dropdown-item.active i {
    color: #ffffff !important;
}

.modern-dropdown-item.active span {
    color: #ffffff !important;
}

/* Balance Badge */
.modern-balance {
    margin-left: 0.5rem;
}

.modern-balance-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #ffffff;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
    transition: all 0.3s ease;
}

.modern-balance-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(251, 191, 36, 0.4);
}

.modern-balance-badge i {
    font-size: 1.1rem;
}

/* Register Button Special Style */
.modern-register {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.modern-register:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
}

.modern-register i {
    color: #ffffff;
}

/* Logout Button */
.modern-logout:hover {
    background: #fef2f2 !important;
    color: #dc2626 !important;
}

.modern-logout:hover i {
    color: #dc2626;
}

/* Mobile Toggler */
.modern-toggler {
    border: none;
    padding: 0.5rem;
    background: transparent;
}

.modern-toggler:focus {
    outline: none;
    box-shadow: none;
}

.modern-toggler .hamburger-inner,
.modern-toggler .hamburger-inner::before,
.modern-toggler .hamburger-inner::after {
    background-color: #4a5568;
}

/* Responsive Design */
@media (max-width: 991px) {
    .modern-header .u-header__section {
        padding: 0.5rem 0;
    }

    .modern-nav {
        flex-direction: column;
        align-items: stretch;
        gap: 0.25rem;
        padding: 1rem 0;
    }

    .modern-nav-link {
        padding: 1rem 1.5rem !important;
        border-radius: 12px;
    }

    .modern-nav-link.active {
        border-radius: 12px;
    }

    .modern-dropdown-menu {
        border-radius: 12px;
        box-shadow: none;
        background: #f7fafc;
        margin-top: 0 !important;
        padding: 0.5rem;
    }

    .modern-dropdown-item {
        padding: 0.75rem 1.5rem;
        border-radius: 12px;
    }

    .modern-dropdown-item.active {
        border-radius: 12px;
    }

    .modern-balance {
        margin-left: 0;
    }

    .modern-balance-badge {
        width: 100%;
        justify-content: center;
        border-radius: 25px;
    }
}

/* Container Fluid Padding */
.modern-header .container-fluid {
    padding-left: 2rem;
    padding-right: 2rem;
}

@media (max-width: 768px) {
    .modern-header .container-fluid {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* ========================================
   Modern Authentication Pages Styles
   ======================================== */

/* Auth Section */
.modern-auth-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 2rem 0;
    position: relative;
}

.modern-auth-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,122.7C1248,107,1344,85,1392,74.7L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.modern-auth-section .container {
    position: relative;
    z-index: 1;
}

/* Auth Card */
.modern-auth-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    padding: 3rem 2.5rem;
    animation: fadeInUp 0.6s ease;
}

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

/* Auth Header */
.modern-auth-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.modern-auth-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    animation: iconPulse 2s infinite;
}

.modern-auth-icon-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.modern-auth-icon i {
    font-size: 2.5rem;
    color: #ffffff;
}

.modern-auth-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.modern-auth-subtitle {
    font-size: 1rem;
    color: #718096;
    margin: 0;
}

/* Auth Form */
.modern-auth-form {
    margin-bottom: 2rem;
}

.modern-form-group {
    margin-bottom: 1.5rem;
}

.modern-form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 0.75rem;
}

.modern-form-label i {
    font-size: 1rem;
    color: #667eea;
}

.modern-input-wrapper {
    position: relative;
}

.modern-form-input {
    width: 100%;
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
    color: #2d3748;
    background: #f7fafc;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    transition: all 0.3s ease;
    outline: none;
}

.modern-form-input:focus {
    background: #ffffff;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.modern-form-input::placeholder {
    color: #a0aec0;
}

/* Custom Checkbox */
.modern-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    user-select: none;
    position: relative;
    padding-left: 0;
}

.modern-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.modern-checkbox-checkmark {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: #f7fafc;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    position: relative;
    transition: all 0.3s ease;
}

.modern-checkbox:hover .modern-checkbox-checkmark {
    border-color: #667eea;
}

.modern-checkbox input:checked ~ .modern-checkbox-checkmark {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
}

.modern-checkbox-checkmark::after {
    content: '';
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 11px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.modern-checkbox input:checked ~ .modern-checkbox-checkmark::after {
    display: block;
}

.modern-checkbox-label {
    font-size: 0.9rem;
    color: #4a5568;
    line-height: 1.5;
}

/* Form Actions */
.modern-form-actions {
    margin-top: 2rem;
}

/* Modern Buttons */
.modern-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.modern-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.modern-btn:hover::before {
    width: 300px;
    height: 300px;
}

.modern-btn i,
.modern-btn span {
    position: relative;
    z-index: 1;
}

.modern-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.modern-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(102, 126, 234, 0.5);
}

.modern-btn-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

.modern-btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(16, 185, 129, 0.5);
}

.modern-btn-block {
    width: 100%;
}

/* Auth Footer */
.modern-auth-footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid #e2e8f0;
}

.modern-auth-footer-text {
    font-size: 0.95rem;
    color: #718096;
    margin: 0;
}

.modern-auth-link {
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.modern-auth-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #667eea;
    transition: width 0.3s ease;
}

.modern-auth-link:hover {
    color: #764ba2;
    text-decoration: none;
}

.modern-auth-link:hover::after {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .modern-auth-section {
        padding: 1rem 0;
    }

    .modern-auth-card {
        padding: 2rem 1.5rem;
        border-radius: 15px;
    }

    .modern-auth-icon {
        width: 70px;
        height: 70px;
    }

    .modern-auth-icon i {
        font-size: 2rem;
    }

    .modern-auth-title {
        font-size: 1.75rem;
    }

    .modern-auth-subtitle {
        font-size: 0.9rem;
    }

    .modern-form-input {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }

    .modern-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .modern-auth-card {
        padding: 1.5rem 1rem;
    }

    .modern-auth-header {
        margin-bottom: 1.5rem;
    }

    .modern-form-group .row [class*="col-"] {
        margin-bottom: 1rem;
    }

    .modern-form-group .row [class*="col-"]:last-child .modern-form-group {
        margin-bottom: 0;
    }
}

/* ========================================
   Modern Order Pages Styles
   ======================================== */

/* Page Section */
.modern-page-section {
    background: #f7fafc;
    min-height: 100vh;
}

/* Page Header */
.modern-page-header {
    margin-bottom: 2rem;
}

.modern-page-title-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.modern-page-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}

.modern-icon-gradient-green {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.modern-page-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.modern-page-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #2d3748;
    margin: 0;
}

.modern-page-subtitle {
    font-size: 1rem;
    color: #718096;
    margin: 0.5rem 0 0;
}

/* Modern Card */
.modern-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    margin-bottom: 2rem;
}

/* Filter Card */
.modern-filter-card {
    padding: 1.5rem;
}

/* Search Form */
.modern-search-form {
    margin-bottom: 1.5rem;
}

.modern-search-wrapper {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.modern-search-input-container {
    position: relative;
    flex: 1;
}

.modern-search-icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.25rem;
    color: #a0aec0;
    pointer-events: none;
    z-index: 1;
}

.modern-search-input {
    width: 100%;
    padding: 1rem 1.25rem 1rem 3.5rem;
    font-size: 1rem;
    color: #2d3748;
    background: #f7fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s ease;
    outline: none;
}

.modern-search-input:focus {
    background: #ffffff;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.modern-search-btn {
    padding: 1rem 2rem;
    white-space: nowrap;
}

/* Filter Buttons */
.modern-filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.modern-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #4a5568;
    background: #f7fafc;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modern-filter-btn:hover {
    background: #edf2f7;
    border-color: #cbd5e0;
    transform: translateY(-2px);
}

.modern-filter-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.modern-filter-btn.active i {
    color: #ffffff;
}

/* Green Filter Variant */
.modern-filter-btn.modern-filter-green.active {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-color: #10b981;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* Orders Container */
.modern-orders-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Order Card */
.modern-order-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.modern-order-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

/* Order Header */
.modern-order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-bottom: 2px solid #e2e8f0;
}

.modern-order-id {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.modern-order-id i {
    color: #667eea;
    font-size: 1.1rem;
}

.modern-order-id-label {
    color: #718096;
    font-weight: 500;
}

.modern-order-id-value {
    color: #2d3748;
    font-weight: 700;
    font-size: 1.1rem;
}

.modern-order-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #718096;
    font-size: 0.9rem;
}

.modern-order-date i {
    font-size: 1rem;
}

/* Order Body */
.modern-order-body {
    padding: 1.5rem;
}

.modern-order-service {
    margin-bottom: 1.25rem;
}

.modern-order-service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0 0 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.modern-service-id {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.75rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.modern-order-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #667eea;
    text-decoration: none;
    font-size: 0.95rem;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.modern-order-link:hover {
    color: #764ba2;
    text-decoration: none;
}

.modern-order-link i {
    font-size: 1rem;
    flex-shrink: 0;
}

/* Order Meta */
.modern-order-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

/* Status Badges */
.modern-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 20px;
    white-space: nowrap;
}

.status-pending {
    background: linear-gradient(135deg, #94a3b8 0%, #64748b 100%);
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(148, 163, 184, 0.3);
}

.status-completed {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.status-processing, .status-inprogress {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.status-canceled, .status-partial, .status-refund, .status-stop {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

.modern-price-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
}

/* Progress */
.modern-order-progress {
    margin-bottom: 1.25rem;
}

.modern-progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.modern-progress-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #4a5568;
}

.modern-progress-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: #667eea;
}

.modern-progress-bar {
    width: 100%;
    height: 10px;
    background: #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.modern-progress-fill {
    height: 100%;
    border-radius: 10px;
    transition: width 0.5s ease;
    position: relative;
}

.modern-progress-fill.completed {
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
}

.modern-progress-fill.animated {
    background: linear-gradient(90deg, #3b82f6 0%, #2563eb 100%);
    animation: progressShine 2s infinite;
}

.modern-progress-fill.animated-green {
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
    animation: progressShine 2s infinite;
}

@keyframes progressShine {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Order Details */
.modern-order-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    padding: 1rem;
    background: #f7fafc;
    border-radius: 12px;
}

.modern-detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modern-detail-item i {
    color: #667eea;
    font-size: 1.1rem;
}

.modern-detail-label {
    font-size: 0.875rem;
    color: #718096;
    font-weight: 500;
}

.modern-detail-value {
    font-size: 0.875rem;
    color: #2d3748;
    font-weight: 700;
}

/* Order Note */
.modern-order-note {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: #fef3c7;
    border-left: 4px solid #fbbf24;
    border-radius: 8px;
    margin-top: 1rem;
    color: #92400e;
    font-size: 0.9rem;
}

.modern-order-note i {
    color: #f59e0b;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

/* Dripfeed Specific */
.modern-dripfeed-card {
    border-left: 4px solid #10b981;
}

.modern-dripfeed-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 12px;
}

.modern-dripfeed-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.modern-stat-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.modern-stat-icon i {
    color: #ffffff;
    font-size: 1.25rem;
}

.modern-stat-content {
    display: flex;
    flex-direction: column;
}

.modern-stat-label {
    font-size: 0.8rem;
    color: #059669;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modern-stat-value {
    font-size: 1.25rem;
    color: #064e3b;
    font-weight: 700;
}

.modern-stat-link {
    color: #10b981;
    text-decoration: none;
    transition: all 0.3s ease;
}

.modern-stat-link:hover {
    color: #059669;
    text-decoration: underline;
}

/* Pagination */
.modern-pagination {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.modern-pagination .pagination {
    display: flex;
    gap: 0.5rem;
}

.modern-pagination .page-link {
    padding: 0.75rem 1.25rem;
    color: #667eea;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.modern-pagination .page-link:hover {
    background: #f7fafc;
    border-color: #667eea;
    color: #667eea;
    transform: translateY(-2px);
}

.modern-pagination .page-item.active .page-link {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Responsive Design for Orders */
@media (max-width: 768px) {
    .modern-page-title-wrapper {
        gap: 1rem;
    }

    .modern-page-icon {
        width: 60px;
        height: 60px;
    }

    .modern-page-icon i {
        font-size: 1.75rem;
    }

    .modern-page-title {
        font-size: 1.75rem;
    }

    .modern-page-subtitle {
        font-size: 0.9rem;
    }

    .modern-filter-card {
        padding: 1rem;
    }

    .modern-search-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .modern-search-input-container {
        width: 100%;
    }

    .modern-search-btn {
        width: 100%;
    }

    .modern-filter-buttons {
        gap: 0.5rem;
    }

    .modern-filter-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }

    .modern-order-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 1rem;
    }

    .modern-order-body {
        padding: 1rem;
    }

    .modern-order-details {
        grid-template-columns: 1fr;
    }

    .modern-dripfeed-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .modern-page-title-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .modern-order-service-title {
        font-size: 1.1rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .modern-filter-btn {
        flex: 1;
        min-width: calc(50% - 0.375rem);
        justify-content: center;
    }
}

/* ========================================
   Modern New Order Page Styles
   ======================================== */

/* Page Container */
.modern-order-page {
    background: #f7fafc;
    min-height: 100vh;
}

/* Page Header Section */
.modern-order-header-section {
    margin-bottom: 2rem;
}

.modern-order-title-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.modern-order-page-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.modern-order-page-icon i {
    font-size: 2.5rem;
    color: #ffffff;
}

.modern-order-page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin: 0;
}

.modern-order-page-subtitle {
    font-size: 1.05rem;
    color: #718096;
    margin: 0.5rem 0 0;
}

/* Success Alert */
.modern-success-alert {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
    animation: slideInDown 0.5s ease;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modern-success-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.modern-success-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.modern-success-content {
    flex: 1;
}

.modern-success-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.5rem;
}

.modern-success-message {
    font-size: 1rem;
    color: #ffffff;
    margin: 0;
    opacity: 0.95;
}

/* Order Form Card */
.modern-order-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
}

/* Section */
.modern-order-section {
    padding: 2rem 0;
    border-bottom: 2px solid #edf2f7;
}

.modern-order-section:last-child {
    border-bottom: none;
}

.modern-section-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.modern-section-header i {
    font-size: 1.5rem;
    color: #667eea;
}

.modern-section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2d3748;
    margin: 0;
}

/* Quick Search */
.modern-quick-search {
    position: relative;
}

.modern-search-input-wrapper {
    position: relative;
}

.modern-search-input-icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.25rem;
    color: #a0aec0;
    pointer-events: none;
    z-index: 2;
}

.modern-search-input-field {
    padding-left: 3.5rem !important;
}

.modern-dropdown-menu-container {
    list-style: none;
    margin: 0;
    padding: 0;
}

.modern-dropdown-position {
    position: absolute;
    width: 100%;
    z-index: 10;
}

.modern-dropdown-search {
    display: none;
    list-style: none;
    margin: 0.5rem 0 0;
    padding: 0.5rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    max-height: 350px;
    overflow-y: auto;
}

.modern-dropdown-search::-webkit-scrollbar {
    width: 6px;
}

.modern-dropdown-search::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.modern-dropdown-search::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 10px;
}

.modern-dropdown-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.modern-dropdown-item:hover {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    transform: translateX(4px);
}

.modern-service-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    padding: 0.35rem 0.75rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.modern-service-name {
    flex: 1;
    font-size: 0.95rem;
    color: #2d3748;
    font-weight: 500;
}

/* Form Fields */
.modern-form-field {
    margin-bottom: 1.5rem;
}

.modern-field-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 0.75rem;
}

.modern-field-label i {
    font-size: 1.1rem;
    color: #667eea;
}

.modern-order-input,
.modern-order-select {
    width: 100%;
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
    color: #2d3748;
    background: #f7fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s ease;
    outline: none;
}

.modern-order-input:focus,
.modern-order-select:focus {
    background: #ffffff;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.modern-order-input::placeholder {
    color: #a0aec0;
}

.modern-order-input:disabled {
    background: #edf2f7;
    cursor: not-allowed;
    opacity: 0.7;
}

.modern-field-hint {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #718096;
}

.modern-field-hint i {
    font-size: 1rem;
    color: #667eea;
}

.modern-hint-value {
    font-weight: 700;
    color: #667eea;
}

/* Dripfeed Toggle */
.modern-dripfeed-toggle {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.modern-toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    flex-shrink: 0;
}

.modern-toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.modern-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e0;
    transition: 0.4s;
    border-radius: 34px;
}

.modern-toggle-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.modern-toggle-switch input:checked + .modern-toggle-slider {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.modern-toggle-switch input:checked + .modern-toggle-slider:before {
    transform: translateX(26px);
}

.modern-toggle-label {
    flex: 1;
}

.modern-toggle-label i {
    font-size: 1.25rem;
    color: #059669;
    margin-right: 0.5rem;
}

.modern-toggle-label span {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
}

.modern-toggle-label small {
    display: block;
    font-size: 0.875rem;
    color: #059669;
    margin-top: 0.25rem;
}

/* Dripfeed Fields */
.modern-dripfeed-fields {
    padding: 1.5rem;
    background: #f7fafc;
    border-radius: 12px;
}

/* Price Section */
.modern-price-section {
    padding: 0;
    border: none;
}

.modern-price-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(251, 191, 36, 0.2);
}

.modern-price-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(251, 191, 36, 0.4);
    flex-shrink: 0;
}

.modern-price-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.modern-price-content {
    flex: 1;
}

.modern-price-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #92400e;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modern-price-display {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.modern-price-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: #92400e;
}

.modern-price-value {
    flex: 1;
    padding: 0.5rem 1rem;
    font-size: 2rem;
    font-weight: 700;
    color: #92400e;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid #fbbf24;
    border-radius: 10px;
    text-align: right;
}

.modern-price-note {
    font-size: 0.875rem;
    color: #92400e;
    opacity: 0.8;
}

/* Submit Button */
.modern-submit-section {
    padding: 2rem 0 0;
    border: none;
}

.modern-submit-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    padding: 1.25rem 2rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 14px;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
}

.modern-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

.modern-submit-btn:active {
    transform: translateY(-1px);
}

.modern-submit-btn i,
.modern-submit-btn span {
    position: relative;
    z-index: 2;
}

.modern-submit-btn i {
    font-size: 1.5rem;
}

.modern-submit-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.modern-submit-btn:hover .modern-submit-bg {
    width: 600px;
    height: 600px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .modern-order-page-title {
        font-size: 2rem;
    }

    .modern-order-card {
        padding: 2rem;
    }

    .modern-order-section {
        padding: 1.5rem 0;
    }
}

@media (max-width: 768px) {
    .modern-order-title-wrapper {
        gap: 1rem;
    }

    .modern-order-page-icon {
        width: 70px;
        height: 70px;
    }

    .modern-order-page-icon i {
        font-size: 2rem;
    }

    .modern-order-page-title {
        font-size: 1.75rem;
    }

    .modern-order-page-subtitle {
        font-size: 0.95rem;
    }

    .modern-success-alert {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem 1.5rem;
    }

    .modern-order-card {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .modern-order-section {
        padding: 1.25rem 0;
    }

    .modern-price-card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .modern-submit-btn {
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .modern-order-title-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .modern-order-page-title {
        font-size: 1.5rem;
    }

    .modern-section-title {
        font-size: 1.1rem;
    }

    .modern-dripfeed-toggle {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    /* Price Card Mobile Optimization */
    .modern-price-card {
        padding: 1.5rem;
        gap: 1.25rem;
    }

    .modern-price-icon {
        width: 60px;
        height: 60px;
    }

    .modern-price-icon i {
        font-size: 1.75rem;
    }

    .modern-price-display {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }

    .modern-price-currency {
        font-size: 1.1rem;
        text-align: center;
    }

    .modern-price-value {
        width: 100%;
        padding: 0.75rem 1rem;
        font-size: 1.5rem;
        text-align: center;
    }

    .modern-price-label {
        text-align: center;
        font-size: 0.85rem;
    }

    .modern-price-note {
        text-align: center;
        font-size: 0.8rem;
    }

    /* Order Card Mobile */
    .modern-order-card {
        padding: 1.25rem;
    }

    .modern-order-section {
        padding: 1rem 0;
    }

    /* Submit Button Mobile */
    .modern-submit-btn {
        padding: 1rem 1.25rem;
        font-size: 1rem;
        gap: 0.75rem;
    }

    .modern-submit-btn i {
        font-size: 1.25rem;
    }

    /* Input and Select Unified Size for Mobile */
    .modern-order-input,
    .modern-order-select {
        padding: 1rem 1.25rem;
        font-size: 1rem;
    }

    .modern-order-select {
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        background-image: url('data:image/svg+xml;utf8,<svg fill="%23a0aec0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 10l5 5 5-5z"/></svg>');
        background-repeat: no-repeat;
        background-position: right 1rem center;
        background-size: 1.5rem;
        padding-right: 3rem;
    }
}

/* ========================================
   Modern Add Funds (Deposit) Page Styles
   ======================================== */

/* Page Container */
.modern-addfunds-page {
    background: #f7fafc;
    min-height: 100vh;
}

/* Page Header with Golden Icon */
.modern-page-icon-golden {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    box-shadow: 0 8px 24px rgba(251, 191, 36, 0.4);
    animation: iconFloat 3s ease-in-out infinite;
}

/* Add Funds Card */
.modern-addfunds-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s ease;
}

.modern-addfunds-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Card Header */
.modern-addfunds-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #edf2f7;
}

.modern-addfunds-header-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.3);
    flex-shrink: 0;
}

.modern-addfunds-header-icon-purple {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.modern-addfunds-header-icon i {
    font-size: 1.75rem;
    color: #ffffff;
}

.modern-addfunds-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin: 0;
}

/* Add Funds Form */
.modern-addfunds-form {
    margin-bottom: 2rem;
}

/* Select Wrapper */
.modern-select-wrapper {
    position: relative;
}

.modern-select {
    width: 100%;
    padding: 0.875rem 3rem 0.875rem 1.25rem;
    font-size: 1rem;
    color: #2d3748;
    background: #f7fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s ease;
    outline: none;
    appearance: none;
    cursor: pointer;
}

.modern-select:focus {
    background: #ffffff;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.modern-select-arrow {
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    color: #a0aec0;
    pointer-events: none;
}

/* Form Hint */
.modern-form-hint {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-left: 4px solid #3b82f6;
    border-radius: 8px;
    font-size: 0.875rem;
    color: #1e40af;
}

.modern-form-hint i {
    font-size: 1rem;
    color: #3b82f6;
    flex-shrink: 0;
}

/* Amount Input Wrapper */
.modern-amount-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.modern-amount-prefix {
    position: absolute;
    left: 1.25rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fbbf24;
    pointer-events: none;
    z-index: 2;
    min-width: 35px;
}

.modern-amount-input {
    flex: 1;
    padding: 0.875rem 1.25rem 0.875rem 35px;
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    background: #f7fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s ease;
    outline: none;
}

.modern-amount-input:focus {
    background: #ffffff;
    border-color: #fbbf24;
    box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.1);
}

/* WeChat QR Code */
.modern-wechat-qr {
    width: 100%;
    max-width: 300px;
    margin: 1rem auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Submit Button */
.modern-addfunds-submit-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1.25rem 2rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border: none;
    border-radius: 14px;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
    transition: all 0.3s ease;
}

.modern-addfunds-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.5);
}

.modern-addfunds-submit-btn:active {
    transform: translateY(-1px);
}

.modern-addfunds-submit-btn i,
.modern-addfunds-submit-btn span {
    position: relative;
    z-index: 2;
}

.modern-addfunds-submit-btn i {
    font-size: 1.5rem;
}

.modern-addfunds-submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.modern-addfunds-submit-btn:hover::before {
    width: 600px;
    height: 600px;
}

/* Currency Info */
.modern-currency-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-radius: 12px;
}

.modern-currency-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: #4a5568;
    font-weight: 500;
}

.modern-currency-item i {
    font-size: 1.25rem;
    color: #667eea;
}

/* Records List */
.modern-records-list {
    max-height: 600px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.modern-records-list::-webkit-scrollbar {
    width: 6px;
}

.modern-records-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.modern-records-list::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 10px;
}

.modern-records-list::-webkit-scrollbar-thumb:hover {
    background: #764ba2;
}

/* Record Item */
.modern-record-item {
    padding: 1.25rem;
    background: #f7fafc;
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    border-left: 4px solid #667eea;
}

.modern-record-item:hover {
    background: #edf2f7;
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.modern-record-item:last-child {
    margin-bottom: 0;
}

.modern-record-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.modern-record-id {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: #2d3748;
}

.modern-record-id i {
    font-size: 1rem;
    color: #667eea;
}

.modern-record-amount {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
}

.modern-record-body {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.modern-record-info,
.modern-record-method {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #718096;
}

.modern-record-info i,
.modern-record-method i {
    font-size: 1rem;
    color: #a0aec0;
}

/* Empty State */
.modern-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
}

.modern-empty-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.modern-empty-icon i {
    font-size: 3rem;
    color: #cbd5e0;
}

.modern-empty-text {
    font-size: 1.1rem;
    color: #a0aec0;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 991px) {
    .modern-addfunds-page .row > [class*="col-"] {
        margin-bottom: 2rem;
    }

    .modern-addfunds-page .row > [class*="col-"]:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .modern-addfunds-page {
        /* padding: 1.5rem 0; */
    }

    .modern-addfunds-card {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }

    .modern-addfunds-card-header {
        margin-bottom: 1.5rem;
    }

    .modern-addfunds-header-icon {
        width: 50px;
        height: 50px;
    }

    .modern-addfunds-header-icon i {
        font-size: 1.5rem;
    }

    .modern-addfunds-card-title {
        font-size: 1.25rem;
    }

    .modern-addfunds-submit-btn {
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
    }

    .modern-record-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .modern-record-amount {
        align-self: flex-start;
    }
}

@media (max-width: 576px) {
    .modern-addfunds-card {
        padding: 1.5rem 1rem;
    }

    .modern-page-header .modern-page-title-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .modern-addfunds-form {
        margin-bottom: 1.5rem;
    }

    .modern-currency-info {
        padding: 1rem;
    }

    .modern-amount-input {
        font-size: 1.1rem;
        padding-left: 25px;
    }

    .modern-amount-prefix {
        font-size: 1.1rem;
        left: 1rem;
    }
}
