
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #e5e9f0;
    overflow-x: hidden;
}
.login-container {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.login-card {
    background: white;
    border-radius: 16px;
    padding: 40px 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.login-title {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 12px;
}

.login-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #6b7280;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.5;
}

.form-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
}

.form-control {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    outline: none;
}

.form-control::placeholder {
    color: #9ca3af;
}

.password-wrapper {
    position: relative;
}

.show-password {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #667eea;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    text-transform: uppercase;
}

.show-password:hover {
    color: #5568d3;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    margin-top: 16px;
}

.form-check-input {
    width: 18px;
    height: 18px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: #1e40af;
    border-color: #1e40af;
}

.form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-check-label {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #6b7280;
    margin: 0;
    cursor: pointer;
}

.form-check-label a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.form-check-label a:hover {
    text-decoration: underline;
}

.login-btn {
    width: 100%;
    padding: 14px;
    background: #1e40af;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background: #1e3a8a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.login-btn:active {
    transform: translateY(0);
}



@media (max-width: 576px) {
    .login-card {
        padding: 30px 25px;
    }

    .login-title {
        font-size: 24px;
    }

    .login-subtitle {
        font-size: 13px;
    }
}

@media (max-width: 400px) {
    .login-card {
        padding: 25px 20px;
    }

    .login-title {
        font-size: 22px;
    }
}




        /* Sidebar Styles */
        .sidebar {
            position: fixed;
            top: 0;
            left: 0;
            height: 100vh;
            width: 260px;
            background: #ffffff;
            padding: 24px 0;
            box-shadow: 2px 0 10px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .sidebar.collapsed {
            margin-left: -260px;
        }

        .sidebar-logo {
            padding: 0px;

            border-bottom: 1px solid #e5e9f0;
            margin-bottom: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .sidebar-logo img {
            width: auto;
            margin-right: 20px;
            max-width: 100%;
            height: 60px;
        }

        .sidebar-menu {
            list-style: none;
            padding: 0 12px;
        }

        .sidebar-menu li {
            margin-bottom: 4px;
        }

        .sidebar-menu a {
            display: flex;
            align-items: center;
            padding: 12px 16px;
            color: #64748b;
            text-decoration: none;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .sidebar-menu a i {
            margin-right: 12px;
            font-size: 18px;
            width: 20px;
        }

        .sidebar-menu a:hover {
            background-color: #f1f5f9;
            color: #1e40af;
        }

        .sidebar-menu a.active {
            background-color: #1e40af;
            color: white;
        }

        /* Header Styles */
        .header {
            position: fixed;
            top: 0;
            left: 260px;
            right: 0;
            height: 70px;
            background: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 32px;
            z-index: 999;
            transition: all 0.3s ease;
        }

        .header.expanded {
            left: 0;
        }

        .header-left {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: #64748b;
            cursor: pointer;
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 12px;
            position: relative;
        }

        .user-profile {
            display: flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
            padding: 8px 12px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .user-profile:hover {
            background-color: #f8fafc;
        }

        .user-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
           
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            font-size: 16px;
        }
        .user-avatar img{
            height: 100%;
            width: 100%;
        }
        .user-info {
            display: flex;
            flex-direction: column;
        }

        .user-name {
            font-size: 14px;
            font-weight: 600;
            color: #1e293b;
        }

        .user-role {
            font-size: 12px;
            color: #64748b;
        }

        .dropdown-arrow {
            color: #64748b;
            font-size: 12px;
        }

        .user-dropdown {
            position: absolute;
            top: 60px;
            right: 0;
            background: white;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            min-width: 200px;
            display: none;
            z-index: 1000;
        }

        .user-dropdown.show {
            display: block;
        }

        .user-dropdown a {
            display: flex;
            align-items: center;
            padding: 12px 20px;
            color: #64748b;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .user-dropdown a i {
            margin-right: 10px;
            width: 20px;
        }

        .user-dropdown a:hover {
            background-color: #f8fafc;
            color: #1e40af;
        }

        .user-dropdown a:first-child {
            border-radius: 8px 8px 0 0;
        }

        .user-dropdown a:last-child {
            border-radius: 0 0 8px 8px;
            color: #ef4444;
        }

        .user-dropdown a:last-child:hover {
            background-color: #fef2f2;
            color: #dc2626;
        }

        /* Main Content */
        .main-content {
            margin-left: 260px;
            margin-top: 70px;
            padding: 32px;
            min-height: calc(100vh - 70px);
            transition: all 0.3s ease;
        }

        .main-content.expanded {
            margin-left: 0;
        }

        /* Updated Page Header with Date Filter */
        .page-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 32px;
            flex-wrap: wrap;
            gap: 20px;
        }

        .page-title {
            font-family: 'Poppins', sans-serif;
            font-size: 26px;
            font-weight: 700;
            color: #1e293b;
            margin: 0;
        }

  
        .date-filter-container label {
            font-size: 14px;
            color: #64748b;
            font-weight: 500;
            white-space: nowrap;
        }

        .date-range-input {
            background: #fff;
            border: 1px solid #e2e8f0;
            border-radius: 6px;
            padding: 8px 12px;
            font-size: 14px;
            color: #1e293b;
            min-width: 250px;
            cursor: pointer;
        }

        .date-range-input:focus {
            outline: none;
            border-color: #1e40af;
            box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
        }

        /* Content Card */
        .content-card {
            background: white;
            border-radius: 12px;
            padding: 28px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        /* Updated Card Header Section */
        .card-header-section {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 24px;
            flex-wrap: wrap;
            gap: 16px;
            padding-bottom: 20px;
            border-bottom: 1px solid #e2e8f0;
        }

        .card-title {
            font-family: 'Poppins', sans-serif;
            font-size: 20px;
            font-weight: 600;
            color: #1e293b;
            margin: 0;
            flex: 1;
            min-width: 200px;
        }

        .filters-section {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            align-items: center;
            justify-content: flex-end;
            flex: 2;
            min-width: 300px;
            max-width: 100%;
        }

        .filter-dropdown {
            min-width: 140px;
            flex: 1;
        }

        .search-input {
            min-width: 200px;
            flex: 2;
        }

        .form-select, .form-control {
            padding: 10px 16px;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            font-size: 14px;
            color: #64748b;
            height: 40px;
        }

        .form-select:focus, .form-control:focus {
            border-color: #1e40af;
            box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
            outline: none;
        }

        .btn-add-client {
            background: #1e40af;
            color: white;
            border: none;
            padding: 10px 24px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            white-space: nowrap;
            height: 40px;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .btn-add-client:hover {
            background: #1e3a8a;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
        }

        /* Table Styles */
        .table-container {
            margin-top: 20px;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid #e2e8f0;
            overflow-x: auto;
        }

        .custom-table {
            width: 100%;
            min-width: 800px;
            margin: 0;
            border-collapse: separate;
            border-spacing: 0;
        }

        .custom-table thead {
            background: #f8fafc;
        }

        .custom-table thead th {
            padding: 16px;
            font-size: 13px;
            font-weight: 600;
            color: #475569;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border: none;
            border-bottom: 2px solid #e2e8f0;
            white-space: nowrap;
        }

        .custom-table tbody td {
            padding: 18px 16px;
            font-size: 14px;
            color: #64748b;
            border-bottom: 1px solid #f1f5f9;
            vertical-align: middle;
            white-space: nowrap;
        }

        .custom-table tbody tr:last-child td {
            border-bottom: none;
        }

        .custom-table tbody tr:hover {
            background-color: #f8fafc;
        }

        .status-badge {
            display: inline-block;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            text-align: center;
            min-width: 80px;
        }

        .status-active {
            background: #d1fae5;
            color: #065f46;
        }
        
        .status-inactive {
            background: #fee2e2;
            color: #991b1b;
        }
        
        .status-pending {
            background: #fef3c7;
            color: #92400e;
        }
        
        .status-initiated {
            background: #dbeafe;
            color: #1e40af;
        }
        
        .status-created {
            background: #e0e7ff;
            color: #3730a3;
        }
        
        .status-expired {
            background: #f3f4f6;
            color: #374151;
        }
        
        .status-fund-settled {
            background: #dcfce7;
            color: #166534;
        }
        
        .status-fund-failed {
            background: #fee2e2;
            color: #991b1b;
        }

        /* Pagination Styles */
        .pagination-section {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 24px;
            flex-wrap: wrap;
            gap: 16px;
            padding-top: 20px;
            border-top: 1px solid #e2e8f0;
        }

        .pagination-info {
            font-size: 14px;
            color: #64748b;
            white-space: nowrap;
        }

        .pagination {
            display: flex;
            align-items: center;
            gap: 6px;
            margin: 0;
            padding: 0;
            list-style: none;
            flex-wrap: wrap;
        }

        .pagination .page-item {
            margin: 0;
        }

        .pagination .page-link {
            display: block;
            padding: 8px 14px;
            border: 1px solid #e2e8f0;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 500;
            color: #64748b;
            text-decoration: none;
            background: white;
            transition: all 0.2s ease;
            min-width: 42px;
            text-align: center;
        }

        .pagination .page-link:hover {
            background-color: #f8fafc;
            border-color: #1e40af;
            color: #1e40af;
        }

        .pagination .page-item.active .page-link {
            background-color: #1e40af;
            border-color: #1e40af;
            color: white;
        }

        .pagination .page-item.disabled .page-link {
            color: #94a3b8;
            cursor: not-allowed;
            background-color: #f8fafc;
        }

        .pagination .page-item.disabled .page-link:hover {
            background-color: #f8fafc;
            border-color: #e2e8f0;
            color: #94a3b8;
        }

        /* Modal Styles */
        .modal-content {
            border-radius: 12px;
            border: none;
        }

        .modal-header {
            padding: 24px 28px;
            border-bottom: 1px solid #e2e8f0;
        }

        .modal-title {
            font-family: 'Poppins', sans-serif;
            font-size: 20px;
            font-weight: 600;
            color: #1e293b;
        }

        .modal-body {
            padding: 28px;
        }

        .modal-footer {
            padding: 20px 28px;
            border-top: 1px solid #e2e8f0;
        }

        .btn-close:focus {
            box-shadow: none;
        }

        .btn-cancel {
            background: #f1f5f9;
            color: #64748b;
            border: none;
            padding: 10px 24px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
        }

        .btn-cancel:hover {
            background: #e2e8f0;
        }

        .btn-submit {
            background: #1e40af;
            color: white;
            border: none;
            padding: 10px 24px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
        }

        .btn-submit:hover {
            background: #1e3a8a;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .search-input {
                min-width: 180px;
            }
            
            .date-filter-container {
                min-width: 300px;
            }
        }

        @media (max-width: 992px) {
            .sidebar {
                margin-left: -260px;
            }

            .sidebar.show {
                margin-left: 0;
            }

            .header {
                left: 0;
            }

            .main-content {
                margin-left: 0;
            }

            .menu-toggle {
                display: block;
            }

            .page-header {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .date-filter-container {
                width: 100%;
                justify-content: space-between;
            }
            
            .filters-section {
                width: 100%;
                justify-content: flex-start;
            }
        }

        @media (max-width: 768px) {
            .main-content {
                padding: 20px 16px;
            }

            .content-card {
                padding: 20px 16px;
            }

            .page-title {
                font-size: 26px;
            }

            .card-header-section {
                flex-direction: column;
                align-items: flex-start;
            }

            .filters-section {
                flex-direction: column;
                width: 100%;
            }

            .filter-dropdown, .search-input, .btn-add-client {
                width: 100%;
                min-width: 100% !important;
            }

            .header {
                padding: 0 16px;
            }

            .date-filter-container {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
                width: 100%;
            }
            
            .date-range-input {
                width: 100%;
                min-width: 100% !important;
            }
            
            .pagination-section {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            
            .pagination-info {
                order: 2;
                margin-top: 10px;
            }
            
            .pagination {
                order: 1;
                justify-content: center;
            }
            
            .custom-table {
                font-size: 13px;
            }
            
            .custom-table thead th,
            .custom-table tbody td {
                padding: 12px 10px;
            }
        }

        @media (max-width: 576px) {
            .filters-section {min-width: 100% !important;}
            .page-title {
                font-size: 22px;
            }

            .user-avatar {
                width: 35px;
                height: 35px;
                font-size: 14px;
            }
            
            .date-filter-container label {
                font-size: 13px;
            }
            
            .date-range-input {
                font-size: 13px;
                padding: 6px 10px;
            }
            
            .pagination .page-link {
                padding: 6px 10px;
                font-size: 13px;
                min-width: 36px;
            }
            
            .pagination {
                gap: 4px;
            }
        }

        /* Overlay for mobile menu */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            display: none;
            z-index: 999;
        }

        .overlay.show {
            display: block;
        }
        /* Payment Reseller Page Specific Styles */
.link-container {
    display: flex;
    align-items: center;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 8px;
    gap: 10px;
}

.link-text {
    flex: 1;
    font-family: monospace;
    font-size: 13px;
    color: #475569;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 4px 8px;
    background: white;
    border-radius: 4px;
    border: 1px solid #e2e8f0;
}

.link-actions {
    display: flex;
    gap: 6px;
}

.btn-copy-link {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.btn-copy-link:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

.btn-open-link {
    background: #10b981;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.btn-open-link:hover {
    background: #059669;
    transform: translateY(-1px);
}

.btn-delete {
    background: #ef4444;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.btn-delete:hover {
    background: #dc2626;
    transform: translateY(-1px);
}

/* Toggle Switch Styles */
.toggle-container {
    padding: 16px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.toggle-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.toggle-label {
    font-weight: 500;
    color: #1e293b;
    font-size: 14px;
}

.toggle-description {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.toggle-checkbox {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e1;
    transition: .4s;
    border-radius: 34px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

.toggle-checkbox:checked + .toggle-slider {
    background-color: #1e40af;
}

.toggle-checkbox:checked + .toggle-slider:before {
    transform: translateX(26px);
}

/* Badge styles for link types */
.badge {
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 12px;
}

.bg-primary {
    background: #3b82f6 !important;
}

.bg-info {
    background: #06b6d4 !important;
}

.bg-success {
    background: #10b981 !important;
}

.bg-warning {
    background: #f59e0b !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .link-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .link-text {
        text-align: center;
    }
    
    .link-actions {
        justify-content: center;
    }
    
    .toggle-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .toggle-switch {
        align-self: flex-end;
    }
}


 /* Modal Styling */
 .transaction-modal .modal-content {
    border-radius: 12px;
    border: none;
    overflow: hidden;
}

.transaction-modal .modal-header {
    background-color:#000;
    color: #fff;
    border-bottom: none;
    padding: 20px 30px;
}

.transaction-modal .modal-title {
    font-weight: 600;
    font-size: 1.4rem;
    color: #fff;
}

.transaction-modal .modal-body {
    padding: 0;
}

.transaction-details-container {
    display: flex;
    padding: 10px 20px;
    flex-direction: column;
}

.section-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #ddd;
}

.details-section {
    padding: 25px 30px;

    margin-bottom: 20px;
   border: 2px solid #ddd;
   border-radius: 12px   ;
}

.details-section:last-child {
    border-bottom: none;
}

.detail-row {
    display: flex;
    margin-bottom: 12px;
}

.detail-label {
    width: 200px;
    font-weight: 600;
    color: var(--text-dark);
}

.detail-value {
    flex: 1;
    color: var(--text-light);
}

.detail-value.status-created {
    color: #004085;
    font-weight: 600;
}

.nft-id {
    display: inline-block;
    background-color: rgba(67, 97, 238, 0.1);
    padding: 3px 8px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.9rem;
}

.transaction-id {
    font-weight: 700;
    color: var(--primary-color);
}

.modal-footer {
    border-top: 1px solid #ddd;
    padding: 15px 30px;
}

.close-btn {
    background-color:#3a56d4 ;
    border: none;
    color: white;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.close-btn:hover {
    background-color: #3a56d4;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .detail-row {
        flex-direction: column;
        margin-bottom: 15px;
    }
    
    .detail-label {
        width: 100%;
        margin-bottom: 5px;
    }
    
    .custom-table th, .custom-table td {
        padding: 10px 8px;
    }
    
    .transaction-modal .modal-header,
    .details-section {
        padding: 20px;
    }
}


/* Image Upload Styles */
.image-upload-container {
    border: 2px dashed #ddd;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    background: #f8f9fa;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.image-upload-container:hover {
    border-color: #667eea;
    background: #f0f4ff;
}

.image-upload-container.dragover {
    border-color: #667eea;
    background: #e8f0ff;
}

.upload-icon {
    font-size: 48px;
    color: #667eea;
    margin-bottom: 15px;
}

.upload-text {
    color: #666;
    margin-bottom: 10px;
    font-size: 16px;
}

.upload-subtext {
    color: #999;
    font-size: 14px;
    margin-bottom: 20px;
}

.btn-upload {
    background: #667eea;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s ease;
}

.btn-upload:hover {
    background: #5a67d8;
}

.image-preview-container {
    display: none;
    margin-top: 20px;
    text-align: center;
}

.image-preview {
    max-width: 100%;
    max-height: 200px;
    border-radius: 8px;
    border: 2px solid #ddd;
    margin-bottom: 10px;
}

.btn-remove-image {
    background: #dc3545;
    color: white;
    border: none;
    padding: 5px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s ease;
}

.btn-remove-image:hover {
    background: #c82333;
}

.existing-image-container {
    margin-bottom: 15px;
    text-align: center;
}

.existing-image {
    max-width: 100%;
    max-height: 150px;
    border-radius: 8px;
    border: 2px solid #ddd;
}

.image-info {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}