* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #e9ecef;
    color: #343a40;
    min-height: 100vh;
}

/* Header Styles */
.header {
    background-color: white;
    border-bottom: 1px solid #dee2e6;
    padding: 15px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 24px;
}

.logo-text {
    font-size: 20px;
    font-weight: bold;
    color: #343a40;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #343a40;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s;
}

.nav-link.active {
    color: #fd7e14;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #fd7e14;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #343a40;
    transition: all 0.3s;
}

.header-icon-link:hover .header-icon {
    stroke: #fd7e14;
}

.header-icon {
    font-size: 18px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.header-icon:hover {
    opacity: 0.7;
}

.balance {
    font-weight: bold;
    color: #343a40;
}

.profile-dropdown {
    position: relative;
}

.profile-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    color: #343a40;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.profile-btn:hover {
    background-color: #f8f9fa;
}

.dropdown-arrow {
    font-size: 10px;
    color: #6c757d;
    transition: transform 0.3s;
}

.profile-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.profile-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    min-width: 200px;
    margin-top: 5px;
    z-index: 1000;
}

.profile-menu.show {
    display: block;
}

.profile-menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: #343a40;
    text-decoration: none;
    transition: background-color 0.3s;
    border-bottom: 1px solid #f8f9fa;
}

.profile-menu-item:last-child {
    border-bottom: none;
}

.profile-menu-item:hover {
    background-color: #f8f9fa;
}

.profile-menu-item.logout {
    color: #dc3545;
}

.profile-menu-item.logout:hover {
    background-color: #fff5f5;
}

.profile-menu-item svg {
    flex-shrink: 0;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    min-height: calc(100vh - 80px);
}

/* Sidebar */
.sidebar {
    width: 250px;
    background-color: #e9ecef;
    padding: 20px;
}

.breadcrumb {
    margin-bottom: 20px;
    color: #6c757d;
    font-size: 14px;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nav-btn {
    background-color: white;
    border: none;
    padding: 12px 16px;
    border-radius: 8px;
    color: #343a40;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    text-align: left;
}

.nav-btn:hover {
    background-color: #f8f9fa;
}

.nav-btn.active {
    background-color: #fd7e14;
    color: white;
}

.nav-btn.sell-database {
    background-color: #ffa500;
    color: white;
}

/* Main Content */
.main-content {
    flex: 1;
    padding: 20px;
    background-color: #e9ecef;
}

.tab-container {
    display: none;
}

.tab-container.active {
    display: block;
}

/* Dashboard Styles */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border: 1px solid #dee2e6;
}

.stat-label {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 10px;
}

.stat-value {
    font-size: 24px;
    font-weight: bold;
}

.stat-value.orange {
    color: #fd7e14;
}

.stat-value.red {
    color: #dc3545;
}

.stat-value.blue {
    color: #007bff;
}

/* Withdraw Styles */
.withdraw-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.balance-card {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.balance-title {
    font-size: 16px;
    font-weight: bold;
    color: #343a40;
    margin-bottom: 10px;
}

.balance-amount {
    font-size: 28px;
    font-weight: bold;
    color: #fd7e14;
}

.withdraw-card {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.card-title {
    font-size: 16px;
    font-weight: bold;
    color: #343a40;
    margin-bottom: 20px;
}

.crypto-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.crypto-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border: 1px solid #fd7e14;
    border-radius: 8px;
    background-color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}

.crypto-btn:hover {
    background-color: #fff3e0;
}

.crypto-btn.selected {
    background-color: #fd7e14;
    color: white;
}

.crypto-icon {
    width: 24px;
    height: 24px;
    background-color: #fd7e14;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.withdraw-input-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.crypto-address {
    padding: 12px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-size: 14px;
}

.withdraw-btn {
    background-color: #fd7e14;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.withdraw-btn:hover {
    background-color: #e55a00;
}

.max-amount-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #6c757d;
}

.info-icon {
    width: 16px;
    height: 16px;
    background-color: #6c757d;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* Transactions Styles */
.transactions-card {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.transactions-table {
    display: flex;
    flex-direction: column;
}

.transactions-table .table-header {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1.5fr 1.5fr 1fr;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #dee2e6;
    font-weight: bold;
    color: #343a40;
}

.transactions-table .table-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1.5fr 1.5fr 1fr;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #f8f9fa;
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #dee2e6;
    font-weight: bold;
    color: #343a40;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #f8f9fa;
}

.table-cell {
    display: flex;
    align-items: center;
    gap: 8px;
}

.crypto-icon-small {
    width: 20px;
    height: 20px;
    background-color: #fd7e14;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
}

.status-success {
    background-color: #d4edda;
    color: #155724;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
}

/* Breadcrumb Styles */
.breadcrumb-section {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 20px;
    padding: 10px 0;
}

/* Bases Styles */
.bases-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.filters-card {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.filters-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-select {
    padding: 8px 12px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    background-color: #f8f9fa;
    font-size: 14px;
}

.price-filters {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}

.price-group, .valid-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-group span, .valid-group span {
    font-size: 14px;
    font-weight: 500;
    min-width: 40px;
}

.price-input {
    padding: 8px 12px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    width: 120px;
    font-size: 14px;
}

.filter-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.show-count-buttons {
    display: flex;
    gap: 5px;
}

.count-btn {
    padding: 6px 12px;
    border: 1px solid #fd7e14;
    border-radius: 6px;
    background-color: white;
    color: #fd7e14;
    cursor: pointer;
    transition: all 0.3s;
}

.count-btn.active {
    background-color: #fd7e14;
    color: white;
}

.action-buttons {
    display: flex;
    gap: 10px;
}

.clear-btn, .search-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.clear-btn {
    background-color: #6c757d;
    color: white;
}

.search-btn {
    background-color: #fd7e14;
    color: white;
}

.bases-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bases-count {
    font-size: 16px;
    font-weight: bold;
    color: #343a40;
}

.bases-pagination {
    font-size: 14px;
    color: #6c757d;
}

.bases-table-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: hidden;
}

.bases-table .table-header {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    background-color: #f8f9fa;
    padding: 15px;
}

.bases-table .table-row {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    padding: 15px;
    transition: background-color 0.3s;
}

.bases-table .table-row:hover {
    background-color: #f8f9fa;
}

.valid-green {
    color: #28a745;
    font-weight: bold;
}

.pagination-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 20px;
    background-color: #f8f9fa;
}

.page-nav-btn, .page-number {
    padding: 8px 12px;
    border: 1px solid #fd7e14;
    border-radius: 6px;
    background-color: white;
    color: #fd7e14;
    cursor: pointer;
    transition: all 0.3s;
}

.page-number.active {
    background-color: #fd7e14;
    color: white;
}

/* Footer */
.footer {
    background-color: white;
    border-top: 1px solid #dee2e6;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left, .footer-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-icon {
    font-size: 20px;
    color: #fd7e14;
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    color: white;
    font-weight: bold;
    z-index: 1000;
    transition: opacity 0.3s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.notification-success {
    background-color: #28a745;
}

.notification-error {
    background-color: #dc3545;
}

.notification-warning {
    background-color: #ffc107;
    color: #212529;
}

.notification-info {
    background-color: #007bff;
}

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

/* Hover Effects */
.nav-btn:hover,
.count-btn:hover,
.page-nav-btn:hover,
.page-number:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Focus States */
.filter-select:focus,
.price-input:focus,
.crypto-address:focus {
    outline: none;
    border-color: #fd7e14;
    box-shadow: 0 0 0 2px rgba(253, 126, 20, 0.2);
}

/* Home Page Styles */
.home-content {
    padding: 40px 20px;
    text-align: center;
}

.home-content h1 {
    font-size: 48px;
    color: #343a40;
    margin-bottom: 20px;
}

.home-content p {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 40px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 24px;
    color: #343a40;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 20px;
}

.feature-btn {
    display: inline-block;
    background-color: #fd7e14;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.feature-btn:hover {
    background-color: #e55a00;
    color: white;
    text-decoration: none;
}

.stats-section {
    margin-top: 60px;
}

.stats-section h2 {
    font-size: 32px;
    color: #343a40;
    margin-bottom: 30px;
}

/* Admin and User specific styles */
.admin-content,
.user-content {
    padding: 40px 20px;
}

.admin-content h1,
.user-content h1 {
    font-size: 36px;
    color: #343a40;
    margin-bottom: 20px;
}

.admin-content p,
.user-content p {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 30px;
}

.stat-value.green {
    color: #28a745;
}

/* Admin Panel Styles */
.badge {
    display: inline-block;
    background-color: #fd7e14;
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 5px;
}

.admin-stats {
    grid-template-columns: repeat(3, 1fr);
}

/* Settings Styles */
.settings-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    background-color: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.settings-card {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border: 1px solid #dee2e6;
}

.settings-title {
    font-size: 18px;
    font-weight: bold;
    color: #343a40;
    margin-bottom: 20px;
}

.settings-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.settings-form .form-group:last-of-type {
    grid-column: 1 / -1;
}

.settings-form .save-btn {
    grid-column: 1;
    margin-top: 10px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-group label, .form-label {
    font-size: 14px;
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 5px;
    display: block;
}

.settings-input, .form-input {
    padding: 10px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: #fd7e14;
}

.save-btn, .btn-primary {
    background-color: #fd7e14;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.save-btn:hover, .btn-primary:hover {
    background-color: #e55a00;
}

.btn-secondary {
    background-color: #6c757d;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: #5a6268;
}

.save-icon {
    font-size: 16px;
}

/* Search Section */
.search-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.search-input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    font-size: 14px;
}

.search-btn {
    background-color: #fd7e14;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-btn:hover {
    background-color: #e55a00;
}

.count-info {
    font-size: 14px;
    color: #6c757d;
    white-space: nowrap;
}

/* Advanced Search Form */
.advanced-search-form {
    margin-bottom: 20px;
}

.search-filters-grid {
    display: grid;
    grid-template-columns: 200px 1fr auto auto auto;
    gap: 10px;
    align-items: center;
}

.view-btn {
    background-color: #fd7e14;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.view-btn:hover {
    background-color: #e55a00;
}

/* Sale Info Grid */
.sale-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.info-section {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #dee2e6;
}

.info-section h4 {
    margin: 0 0 15px 0;
    color: #343a40;
    font-size: 16px;
    border-bottom: 2px solid #fd7e14;
    padding-bottom: 8px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #dee2e6;
}

.info-item:last-child {
    border-bottom: none;
}

.info-item label {
    font-weight: 600;
    color: #6c757d;
}

.card-data-display {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card-data-item {
    padding: 8px;
    background-color: white;
    border-radius: 4px;
    border: 1px solid #dee2e6;
    font-size: 14px;
}

.card-data-item strong {
    color: #343a40;
    display: inline-block;
    min-width: 120px;
}

/* Shopping Cart Styles */
.cart-icon-link {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -8px;
    background-color: #dc3545;
    color: white;
    border-radius: 10px;
    padding: 2px 6px;
    font-size: 11px;
    font-weight: bold;
    min-width: 18px;
    text-align: center;
}

.buy-actions {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: stretch;
    justify-content: center;
}

.add-cart-btn {
    background-color: #17a2b8;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    width: 100%;
}

.add-cart-btn:hover {
    background-color: #138496;
    transform: scale(1.02);
}

.add-cart-btn svg {
    fill: none;
}

.cart-items-list {
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: 20px;
}

.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 6px;
    margin-bottom: 10px;
    border: 1px solid #dee2e6;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    color: #343a40;
    margin-bottom: 5px;
}

.cart-item-bin {
    font-size: 12px;
    color: #6c757d;
    font-family: monospace;
}

.cart-item-price {
    font-weight: 700;
    color: #fd7e14;
    font-size: 18px;
    margin-right: 15px;
}

.cart-remove-btn {
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 8px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-remove-btn:hover {
    background-color: #c82333;
    transform: scale(1.1);
}

.cart-summary {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    border: 2px solid #fd7e14;
    margin-bottom: 20px;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #dee2e6;
}

.cart-total:last-child {
    border-bottom: none;
    padding-top: 15px;
}

.cart-total span {
    font-size: 16px;
    color: #6c757d;
}

.cart-total strong {
    font-size: 18px;
    color: #343a40;
}

/* Cart Item Expanded */
.cart-item-expanded {
    margin-bottom: 15px;
}

.cart-item-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #dee2e6;
}

.cart-item-details {
    display: flex;
    gap: 8px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.detail-badge {
    background-color: #e9ecef;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    color: #495057;
}

.cart-item-bank {
    font-size: 12px;
    color: #6c757d;
    margin-top: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 400px;
}

.cart-item-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-item-valid {
    font-size: 14px;
    font-weight: 600;
    color: #28a745;
}

/* Cart Confirmation Modal */
.cart-confirm-details {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    margin: 20px 0;
    border: 1px solid #dee2e6;
}

.confirm-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #dee2e6;
}

.confirm-item:last-child {
    border-bottom: none;
}

.confirm-item span {
    font-size: 15px;
    color: #6c757d;
}

.confirm-item strong {
    font-size: 16px;
    color: #343a40;
}

.cart-confirm-items {
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 15px;
    max-height: 200px;
    overflow-y: auto;
    margin-top: 15px;
}

.confirm-items-header {
    font-weight: 600;
    color: #343a40;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid #fd7e14;
}

.confirm-item-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f8f9fa;
    font-size: 14px;
}

.confirm-item-row:last-child {
    border-bottom: none;
}

.confirm-item-row span:first-child {
    color: #495057;
}

.confirm-item-row span:last-child {
    color: #fd7e14;
    font-weight: 600;
}

/* Admin Content Areas */
.admin-dashboard,
.admin-settings,
.admin-users,
.admin-deposits,
.admin-withdraws,
.admin-support,
.admin-bases,
.admin-sales {
    width: 100%;
}

.users-content, 
.deposits-content, 
.withdraws-content, 
.support-content, 
.bases-content, 
.sales-content,
.settings-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-top: 20px;
}

.users-table, .deposits-table, .withdraws-table, .support-table, .bases-table, .sales-table, .purchases-table {
    display: flex;
    flex-direction: column;
}

.users-table .table-header,
.deposits-table .table-header,
.withdraws-table .table-header,
.support-table .table-header,
.bases-table .table-header,
.sales-table .table-header,
.purchases-table .table-header {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1.5fr 1fr 1fr;
    gap: 15px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 6px;
    font-weight: bold;
    color: #343a40;
}

.users-table .table-row,
.deposits-table .table-row,
.withdraws-table .table-row,
.support-table .table-row,
.bases-table .table-row,
.sales-table .table-row,
.purchases-table .table-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1.5fr 1fr 1fr;
    gap: 15px;
    padding: 15px;
    border-bottom: 1px solid #f8f9fa;
    transition: background-color 0.3s;
}

.users-table .table-header,
.users-table .table-row {
    grid-template-columns: 0.5fr 1.5fr 1.5fr 1fr 0.6fr 0.8fr 0.8fr;
}

.users-table .table-row:hover,
.deposits-table .table-row:hover,
.withdraws-table .table-row:hover,
.support-table .table-row:hover,
.bases-table .table-row:hover,
.sales-table .table-row:hover,
.purchases-table .table-row:hover {
    background-color: #f8f9fa;
}

.deposits-table .table-header,
.deposits-table .table-row {
    grid-template-columns: 0.5fr 0.8fr 1fr 1.2fr 1.5fr 1fr 1.5fr;
}

.status-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
}

.status-completed {
    background-color: #d4edda;
    color: #155724;
}

.status-pending {
    background-color: #fff3cd;
    color: #856404;
}

.status-failed {
    background-color: #f8d7da;
    color: #721c24;
}

.status-approved {
    background-color: #d4edda;
    color: #155724;
}

.status-rejected {
    background-color: #f8d7da;
    color: #721c24;
}

.status-review {
    background-color: #fff3cd;
    color: #856404;
}

.status-inactive {
    background-color: #e2e3e5;
    color: #383d41;
}

.status-paused {
    background-color: #ffeaa7;
    color: #d63031;
}

.valid-percentage {
    color: #28a745;
    font-weight: 600;
}

.role-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
}

.role-user {
    background-color: #e3f2fd;
    color: #1976d2;
}

.role-seller {
    background-color: #fff3e0;
    color: #f57c00;
}

.role-admin {
    background-color: #fce4ec;
    color: #c2185b;
}

.role-banned {
    background-color: #ffebee;
    color: #c62828;
}

.ban-user-btn {
    width: 100%;
    padding: 12px;
    background-color: #dc3545;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.ban-user-btn:hover {
    background-color: #c82333;
    transform: translateY(-1px);
}

.ban-user-btn:active {
    transform: translateY(0);
}

.withdraws-table .table-header,
.withdraws-table .table-row {
    grid-template-columns: 0.5fr 0.8fr 0.8fr 1fr 2fr 1.2fr 1fr;
}

.confirm-details {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

.confirm-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #dee2e6;
}

.confirm-row:last-child {
    border-bottom: none;
}

.confirm-row strong {
    color: #6c757d;
}

.confirm-row span {
    color: #343a40;
    font-weight: 500;
}

/* Sell Database Styles */
.database-upload-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-top: 20px;
}

.form-section {
    margin-bottom: 25px;
}

.section-label {
    display: block;
    font-weight: 600;
    color: #343a40;
    margin-bottom: 12px;
    font-size: 14px;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.radio-group.horizontal {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
}

.radio-option {
    display: flex;
    align-items: center;
    padding: 12px;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.radio-option:hover {
    border-color: #ff6b35;
    background-color: rgba(255, 107, 53, 0.05);
}

.radio-option input[type="radio"] {
    margin-right: 10px;
    cursor: pointer;
    width: 18px;
    height: 18px;
}

.radio-option input[type="radio"]:checked ~ span {
    color: #ff6b35;
    font-weight: 600;
}

.radio-option span {
    font-size: 14px;
    color: #343a40;
}

.radio-option small {
    display: block;
    color: #6c757d;
    font-size: 12px;
    margin-top: 4px;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-option {
    display: flex;
    flex-direction: column;
    padding: 15px;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkbox-option:hover {
    border-color: #ff6b35;
    background-color: rgba(255, 107, 53, 0.05);
}

.checkbox-option input[type="radio"] {
    margin-right: 10px;
    cursor: pointer;
    width: 18px;
    height: 18px;
}

.database-textarea {
    width: 100%;
    min-height: 200px;
    padding: 15px;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    resize: vertical;
    transition: border-color 0.3s ease;
}

.database-textarea:focus {
    outline: none;
    border-color: #ff6b35;
}

.textarea-info {
    font-size: 12px;
    color: #6c757d;
    margin-top: 8px;
}

.file-upload-area {
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    background-color: #f8f9fa;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-upload-area:hover {
    border-color: #ff6b35;
    background-color: rgba(255, 107, 53, 0.05);
}

.file-upload-area svg {
    color: #6c757d;
    margin-bottom: 15px;
}

.file-upload-area p {
    margin: 5px 0;
    color: #343a40;
    font-size: 14px;
}

.file-upload-area .file-info {
    color: #6c757d;
    font-size: 12px;
}

.file-name {
    margin-top: 10px;
    color: #28a745;
    font-weight: 600;
    font-size: 14px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #343a40;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-input {
    padding: 12px;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #ff6b35;
}

.form-textarea {
    width: 100%;
    min-height: 100px;
    padding: 12px;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    font-size: 14px;
    resize: vertical;
    transition: border-color 0.3s ease;
}

.form-textarea:focus {
    outline: none;
    border-color: #ff6b35;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Format Constructor Styles */
.format-buttons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
    margin-bottom: 20px;
}

.format-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 10px 15px;
    background-color: #fff;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    color: #343a40;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.format-btn:hover {
    border-color: #ff6b35;
    background-color: rgba(255, 107, 53, 0.05);
    color: #ff6b35;
    transform: translateY(-2px);
}

.format-btn:active {
    transform: translateY(0);
}

.format-btn svg {
    flex-shrink: 0;
}

.format-preview-container {
    background-color: #f8f9fa;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    padding: 15px;
}

.format-preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #dee2e6;
}

.format-preview-header strong {
    color: #343a40;
    font-size: 14px;
}

.clear-format-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background-color: #dc3545;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.clear-format-btn:hover {
    background-color: #c82333;
}

.format-preview {
    min-height: 50px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.format-placeholder {
    color: #6c757d;
    font-size: 13px;
    font-style: italic;
}

.format-field-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    animation: slideIn 0.2s ease;
}

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

.remove-field-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}

.remove-field-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.remove-field-btn svg {
    stroke: white;
}

.use-last-format-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.use-last-format-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.use-last-format-btn:active {
    transform: translateY(0);
}

.use-last-format-btn svg {
    flex-shrink: 0;
}

.support-table .table-header,
.support-table .table-row {
    grid-template-columns: 0.5fr 1fr 1.5fr 1.5fr 0.5fr;
}

.admin-bases .bases-table .table-header,
.admin-bases .bases-table .table-row {
    grid-template-columns: 0.5fr 2fr 0.8fr 1fr 0.8fr 1fr 1fr 1.2fr;
}

.seller-bases .bases-table .table-header,
.seller-bases .bases-table .table-row {
    grid-template-columns: 0.5fr 2fr 1fr 0.8fr 1fr 0.8fr 1fr 1.2fr;
}

.sales-table .table-header,
.sales-table .table-row {
    grid-template-columns: 0.5fr 1fr 1.5fr 1fr 1fr 1.5fr 0.5fr;
}

.options-btn {
    background-color: #fd7e14;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
    padding: 6px 12px;
    border-radius: 4px;
    color: white;
}

.options-btn:hover {
    background-color: #e55a00;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.approve-btn {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 5px;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s;
}

.approve-btn:hover {
    background-color: #218838;
    transform: translateY(-1px);
}

.reject-btn {
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s;
}

.reject-btn:hover {
    background-color: #c82333;
    transform: translateY(-1px);
}

/* Load More Button */
.load-more-section {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.load-more-btn {
    background-color: #fd7e14;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.load-more-btn:hover {
    background-color: #e55a00;
}

/* Support Tabs */
.support-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.tab-btn {
    background-color: white;
    color: #6c757d;
    border: 1px solid #dee2e6;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tab-btn.active {
    background-color: #fd7e14;
    color: white;
    border-color: #fd7e14;
}

.tab-count {
    background-color: rgba(255, 255, 255, 0.3);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
}

.tab-btn.active .tab-count {
    background-color: rgba(255, 255, 255, 0.3);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 8px;
    width: 80%;
    max-width: 800px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.modal-content.chat-modal {
    max-width: 600px;
}

.modal-header {
    padding: 20px;
    border-bottom: 1px solid #dee2e6;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: #343a40;
}

.close {
    color: #6c757d;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover {
    color: #343a40;
}

.modal-body {
    padding: 20px;
}

.user-info-card {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 20px;
    border: 1px solid #e9ecef;
}

.user-info-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
}

.user-info-item label {
    font-weight: bold;
    color: #6c757d;
}

.user-info-item span {
    color: #343a40;
}

.balance-group-card {
    background-color: white;
    padding: 20px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.balance-group-card .form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.last-deposits-card, .data-tabs-card {
    background-color: white;
    padding: 20px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
}

.last-deposits-card .card-title {
    font-size: 16px;
    font-weight: bold;
    color: #343a40;
    margin-bottom: 15px;
}

.last-deposits-card .deposits-table .table-header,
.data-tabs-card .deposits-table .table-header,
.data-tabs-card .purchases-table .table-header {
    background-color: #f8f9fa;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 10px;
}

.last-deposits-card .deposits-table .table-row,
.data-tabs-card .deposits-table .table-row,
.data-tabs-card .purchases-table .table-row {
    padding: 10px;
    border-bottom: 1px solid #f8f9fa;
}

/* Tabs Styles */
.tabs-header {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid #dee2e6;
}

.tab-btn {
    padding: 12px 24px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #6c757d;
    transition: all 0.3s;
    margin-bottom: -2px;
}

.tab-btn:hover {
    color: #fd7e14;
}

.tab-btn.active {
    color: #fd7e14;
    border-bottom-color: #fd7e14;
}

.tab-content {
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Purchases Table Specific Styles */
.data-tabs-card .purchases-table .table-header,
.data-tabs-card .purchases-table .table-row {
    grid-template-columns: 0.4fr 1.2fr 1.5fr 0.8fr 0.5fr 0.7fr 1.2fr;
}

.data-tabs-card .deposits-table .table-header,
.data-tabs-card .deposits-table .table-row {
    grid-template-columns: 0.8fr 1fr 1.5fr 1.2fr;
}

.form-select {
    padding: 10px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    font-size: 14px;
}

/* Chat Styles */
.chat-info {
    text-align: right;
    color: #6c757d;
    font-size: 12px;
    margin-bottom: 15px;
}

.chat-messages {
    max-height: 400px;
    overflow-y: auto;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 6px;
    margin-bottom: 20px;
}

.message {
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 6px;
}

.user-message,
.member-message {
    background-color: white;
    border-left: 3px solid #fd7e14;
}

.support-message {
    background-color: #e3f2fd;
    border-left: 3px solid #2196f3;
}

.message-sender {
    font-size: 12px;
    font-weight: bold;
    color: #6c757d;
    margin-bottom: 5px;
}

.message-text {
    color: #343a40;
    line-height: 1.5;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.chat-input-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chat-length-info {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #6c757d;
}

.chat-message-input {
    width: 100%;
    min-height: 100px;
    padding: 12px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    resize: vertical;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

.chat-message-input:focus {
    outline: none;
    border-color: #fd7e14;
    box-shadow: 0 0 0 2px rgba(253, 126, 20, 0.1);
}

.send-message-btn {
    background-color: #fd7e14;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-end;
}

.send-message-btn:hover {
    background-color: #e55a00;
}

.unread-badge {
    background-color: #dc3545;
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: bold;
}

.support-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.tab-btn {
    padding: 10px 20px;
    background-color: white;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.tab-btn:hover {
    border-color: #fd7e14;
}

.tab-btn.active {
    background-color: #fd7e14;
    border-color: #fd7e14;
    color: white;
}

.tab-count {
    background-color: rgba(0,0,0,0.1);
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 11px;
    margin-left: 5px;
}

.tab-btn.active .tab-count {
    background-color: rgba(255,255,255,0.3);
}

.support-table .table-header,
.support-table .table-row {
    grid-template-columns: 0.8fr 1fr 1fr 1.5fr 0.8fr 1fr;
}

.chat-modal {
    max-width: 800px;
    max-height: 90vh;
}

.chat-modal .modal-body {
    display: flex;
    flex-direction: column;
    height: 600px;
}

.chat-modal .chat-info {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #dee2e6;
    margin-bottom: 15px;
}

.chat-modal .chat-messages {
    flex: 1;
    overflow-y: auto;
    margin-bottom: 15px;
}

.chat-modal .chat-messages::-webkit-scrollbar {
    width: 8px;
}

.chat-modal .chat-messages::-webkit-scrollbar-track {
    background: #e9ecef;
}

.chat-modal .chat-messages::-webkit-scrollbar-thumb {
    background: #fd7e14;
    border-radius: 4px;
}

.chat-input-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid #dee2e6;
    padding-top: 15px;
}

.chat-input {
    width: 100%;
    min-height: 80px;
    padding: 10px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    resize: vertical;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

.chat-input:focus {
    outline: none;
    border-color: #fd7e14;
    box-shadow: 0 0 0 2px rgba(253, 126, 20, 0.1);
}

.send-btn {
    background-color: #fd7e14;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-end;
}

.send-btn:hover {
    background-color: #e55a00;
}

.message-header {
    font-size: 12px;
    font-weight: bold;
    color: #6c757d;
    margin-bottom: 5px;
}

.message-content {
    font-size: 14px;
    color: #343a40;
}

.chat-input-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chat-input {
    width: 100%;
    min-height: 100px;
    padding: 10px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    font-size: 14px;
    resize: vertical;
}

.send-btn {
    background-color: #fd7e14;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    align-self: center;
    transition: background-color 0.3s;
}

.send-btn:hover {
    background-color: #e55a00;
}

/* Section Titles */
.section-title {
    font-size: 18px;
    font-weight: bold;
    color: #343a40;
    margin-bottom: 15px;
}

.pending-withdraws-section,
.other-withdraws-section {
    margin-bottom: 30px;
}

/* Status Styles */
.status-active {
    color: #28a745;
}

.status-pending {
    color: #ffc107;
}

.status-inactive {
    color: #dc3545;
}

.status-completed {
    color: #28a745;
}

/* Auth Pages Styles */
body.auth-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: white;
    padding: 0;
    margin: 0;
}

.auth-container {
    width: 100%;
    max-width: 450px;
    padding: 20px;
}

.auth-form {
    border: 2px solid #fd7e14;
    border-radius: 8px;
    padding: 40px 30px;
    background-color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.auth-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #fd7e14;
}

.auth-logo .logo-icon {
    width: 32px;
    height: 32px;
    color: #fd7e14;
}

.auth-logo .logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #343a40;
}

.auth-title {
    font-size: 28px;
    font-weight: bold;
    color: #fd7e14;
    margin-bottom: 30px;
    text-align: left;
}

.auth-form .form-group {
    margin-bottom: 20px;
}

.auth-form label {
    display: block;
    font-size: 14px;
    color: #343a40;
    margin-bottom: 8px;
}

.auth-input {
    width: 100%;
    padding: 12px;
    border: 2px solid #fd7e14;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.auth-input:focus {
    outline: none;
    border-color: #e55a00;
    box-shadow: 0 0 0 3px rgba(253, 126, 20, 0.1);
}

.auth-input::placeholder {
    color: #fd7e14;
    opacity: 0.5;
}

.captcha-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #343a40;
    border-radius: 6px;
    background-color: white;
}

.captcha-container img {
    flex: 1;
    height: 60px;
    border-radius: 4px;
}

.captcha-refresh {
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-size: 24px;
    color: #fd7e14;
    transition: transform 0.3s;
    padding: 5px;
}

.captcha-refresh:hover {
    transform: rotate(180deg);
}

.refresh-icon {
    display: inline-block;
}

.auth-btn {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    text-decoration: none;
    display: block;
    margin-bottom: 15px;
}

.auth-btn.primary {
    background-color: #fd7e14;
    color: white;
    border: 2px solid #fd7e14;
}

.auth-btn.primary:hover {
    background-color: #e55a00;
    border-color: #e55a00;
}

.auth-btn.secondary {
    background-color: white;
    color: #fd7e14;
    border: 2px solid #fd7e14;
}

.auth-btn.secondary:hover {
    background-color: #fd7e14;
    color: white;
}

.auth-btn.secondary-dotted {
    background-color: white;
    color: #fd7e14;
    border: 2px dotted #fd7e14;
}

.auth-btn.secondary-dotted:hover {
    background-color: #fd7e14;
    color: white;
    border-style: solid;
}

.auth-switch {
    text-align: center;
    margin-top: 20px;
}

.auth-switch p {
    color: #fd7e14;
    margin-bottom: 10px;
    font-size: 14px;
}

/* Logout Modal */
.logout-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 3000;
}

.logout-modal-content {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    width: 90%;
    overflow: hidden;
}

.logout-modal-header {
    padding: 20px 25px;
    border-bottom: 1px solid #dee2e6;
}

.logout-modal-header h3 {
    margin: 0;
    font-size: 20px;
    color: #343a40;
}

.logout-modal-body {
    padding: 25px;
    text-align: center;
}

.logout-modal-body p {
    margin: 0;
    font-size: 16px;
    color: #6c757d;
}

.logout-modal-footer {
    padding: 20px 25px;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    border-top: 1px solid #dee2e6;
}

.logout-cancel-btn {
    padding: 10px 24px;
    background-color: white;
    color: #6c757d;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.logout-cancel-btn:hover {
    background-color: #f8f9fa;
    border-color: #adb5bd;
}

.logout-confirm-btn {
    padding: 10px 24px;
    background-color: #dc3545;
    color: white;
    border: 2px solid #dc3545;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.logout-confirm-btn:hover {
    background-color: #c82333;
    border-color: #c82333;
}

/* Token Modal */
.token-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.token-modal-content {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    border: 3px solid #fd7e14;
    max-width: 500px;
    text-align: center;
}

.token-modal-content h3 {
    font-size: 24px;
    color: #fd7e14;
    margin-bottom: 20px;
}

.token-modal-content p {
    font-size: 16px;
    color: #343a40;
    margin-bottom: 20px;
}

.token-display {
    background-color: #fff3e0;
    padding: 20px;
    border: 2px solid #fd7e14;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-size: 18px;
    font-weight: bold;
    color: #fd7e14;
    margin-bottom: 30px;
    word-break: break-all;
    user-select: all;
}

/* Shop Page Styles */
.shop-page {
    width: 100%;
    max-width: 1400px;
}

.buy-cc-section {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.section-header {
    font-size: 20px;
    font-weight: bold;
    color: #343a40;
    margin-bottom: 20px;
}

.shop-filters {
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.filter-input {
    padding: 10px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    font-size: 14px;
}

.filter-input:focus {
    outline: none;
    border-color: #fd7e14;
    box-shadow: 0 0 0 2px rgba(253, 126, 20, 0.1);
}

.price-valid-filters {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}

.filter-range-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-range-group label {
    font-weight: 500;
    min-width: 50px;
}

.range-inputs {
    display: flex;
    gap: 10px;
}

.range-input {
    padding: 8px 12px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    width: 120px;
    font-size: 14px;
}

.show-count-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.show-count-buttons span {
    font-weight: 500;
    color: #6c757d;
}

/* CC List Styles */
.cc-list-section {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.cc-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.cc-list-title {
    font-size: 20px;
    font-weight: bold;
    color: #343a40;
}

.cc-count {
    font-size: 14px;
    color: #6c757d;
}

.cc-table {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 20px;
}

.cc-table-header {
    display: grid;
    grid-template-columns: 1fr 0.8fr 0.8fr 0.7fr 1fr 0.6fr 0.8fr 0.8fr 0.7fr 0.7fr 0.7fr 0.8fr 1.2fr;
    gap: 10px;
    padding: 12px 15px;
    background-color: #f8f9fa;
    border-radius: 6px;
    font-weight: bold;
    color: #343a40;
    font-size: 14px;
}

.cc-table-row {
    display: grid;
    grid-template-columns: 1fr 0.8fr 0.8fr 0.7fr 1fr 0.6fr 0.8fr 0.8fr 0.7fr 0.7fr 0.7fr 0.8fr 1.2fr;
    gap: 10px;
    padding: 12px 15px;
    background-color: white;
    border: 1px solid #f8f9fa;
    border-radius: 6px;
    align-items: center;
    transition: background-color 0.3s;
}

.cc-table-row:hover {
    background-color: #f8f9fa;
}

.cc-header-cell {
    font-size: 13px;
}

.cc-cell {
    font-size: 13px;
    color: #495057;
}

.cc-valid {
    color: #28a745;
    font-weight: bold;
}

.buy-btn {
    background-color: #fd7e14;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 12px;
    white-space: nowrap;
    width: 100%;
}

.buy-btn:hover {
    background-color: #e55a00;
}

/* Checker Pages Styles */
.checker-page {
    width: 100%;
    max-width: 1200px;
}

.checker-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 20px;
    margin-top: 20px;
}

.checker-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.checker-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.checker-card {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.checker-card-title {
    font-size: 18px;
    font-weight: bold;
    color: #343a40;
    margin-bottom: 15px;
}

.checker-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.checker-info {
    font-size: 12px;
    color: #6c757d;
}

.checker-example {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.example-line {
    background-color: #f8f9fa;
    padding: 8px 12px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    color: #495057;
    cursor: pointer;
    transition: background-color 0.3s;
    overflow-x: auto;
    white-space: nowrap;
    max-width: 100%;
}

.example-line:hover {
    background-color: #e9ecef;
}

.example-line::-webkit-scrollbar {
    height: 6px;
}

.example-line::-webkit-scrollbar-track {
    background: #e9ecef;
    border-radius: 3px;
}

.example-line::-webkit-scrollbar-thumb {
    background: #fd7e14;
    border-radius: 3px;
}

.example-line::-webkit-scrollbar-thumb:hover {
    background: #e55a00;
}

.price-card {
    background-color: #fff3e0;
    border-left: 4px solid #fd7e14;
}

.price-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price-item {
    font-size: 16px;
    font-weight: bold;
    color: #fd7e14;
}

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

.checker-input {
    width: 100%;
    min-height: 200px;
    padding: 15px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    resize: vertical;
}

.checker-input:focus {
    outline: none;
    border-color: #fd7e14;
    box-shadow: 0 0 0 2px rgba(253, 126, 20, 0.1);
}

.input-length {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 12px;
    color: #6c757d;
    background-color: #f8f9fa;
    padding: 4px 8px;
    border-radius: 4px;
}

.check-btn {
    width: 100%;
    padding: 15px;
    background-color: #fd7e14;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.check-btn:hover {
    background-color: #e55a00;
}

.checker-result {
    min-height: 150px;
}

.result-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    color: #6c757d;
    text-align: center;
}

.result-placeholder svg {
    margin-bottom: 15px;
    color: #fd7e14;
}

.result-placeholder p {
    font-size: 14px;
}

.result-loading {
    text-align: center;
    padding: 40px;
    font-size: 16px;
    color: #fd7e14;
}

.result-error {
    text-align: center;
    padding: 40px;
    font-size: 16px;
    color: #dc3545;
}

.result-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.result-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 6px;
    border-left: 4px solid #dee2e6;
}

.result-number {
    font-size: 18px;
    font-weight: bold;
    color: #6c757d;
    min-width: 30px;
}

.result-data {
    flex: 1;
}

.result-bin,
.result-card {
    font-weight: bold;
    color: #343a40;
    margin-bottom: 5px;
    font-family: 'Courier New', monospace;
}

.result-info {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 12px;
    color: #6c757d;
}

.result-status {
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 12px;
}

.result-status.valid {
    background-color: #d4edda;
    color: #155724;
}

.result-status.invalid {
    background-color: #f8d7da;
    color: #721c24;
}

.result-item.valid {
    border-left-color: #28a745;
    background-color: #f1f9f4;
}

.result-item.invalid {
    border-left-color: #dc3545;
    background-color: #fef5f5;
}

.brand-badge {
    display: inline-block;
    padding: 2px 8px;
    margin-left: 10px;
    background-color: #007bff;
    color: white;
    border-radius: 3px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
}

.result-details {
    margin-top: 8px;
    padding-left: 0;
}

.detail-row {
    display: flex;
    gap: 8px;
    margin-bottom: 4px;
    font-size: 13px;
}

.detail-label {
    color: #6c757d;
    min-width: 60px;
    font-weight: 500;
}

.detail-value {
    color: #343a40;
    font-weight: 400;
}

.country-flag {
    display: inline-block;
    padding: 2px 6px;
    background-color: #e9ecef;
    border-radius: 3px;
    font-size: 11px;
    font-weight: bold;
    color: #495057;
}

.result-loading {
    text-align: center;
    padding: 40px;
    color: #6c757d;
    font-size: 16px;
}

.result-error {
    text-align: center;
    padding: 40px;
    color: #dc3545;
    font-size: 16px;
}

/* Checker Select */
.checker-select {
    width: 100%;
    padding: 10px;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    background-color: white;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    outline: none;
    transition: border-color 0.3s;
}

.checker-select:hover {
    border-color: #007bff;
}

.checker-select:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.info-card {
    background-color: #f8f9fa;
}

.checker-info-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
    color: #495057;
}

.checker-info-text > div {
    padding: 5px;
}

/* Result Summary */
.result-summary {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.summary-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px 15px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    backdrop-filter: blur(10px);
    flex: 1;
    min-width: 100px;
}

.summary-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.summary-value {
    font-size: 20px;
    font-weight: bold;
    color: white;
}

.summary-item.success .summary-value {
    color: #28a745;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-block;
    width: fit-content;
}

.summary-item.error .summary-value {
    color: #dc3545;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-block;
    width: fit-content;
}

/* News Page Styles */
.news-page {
    width: 100%;
    max-width: 900px;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.news-count {
    font-size: 14px;
    color: #6c757d;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.news-item {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.news-item.important {
    border-left: 4px solid #fd7e14;
}

.news-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.news-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    color: #343a40;
    font-size: 16px;
}

.news-flag {
    color: #fd7e14;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dismiss-btn {
    background-color: transparent;
    border: none;
    color: #6c757d;
    cursor: pointer;
    padding: 4px;
    transition: color 0.3s;
}

.dismiss-btn:hover {
    color: #dc3545;
}

.news-time {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: #6c757d;
}

.news-time svg {
    flex-shrink: 0;
}

.news-content {
    color: #495057;
    font-size: 14px;
    line-height: 1.6;
    white-space: pre-line;
}

.create-news-form {
    border: 2px solid #fd7e14;
}

.create-news-form .form-group {
    margin-bottom: 15px;
}

.create-news-form .form-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    font-size: 14px;
}

.create-news-form textarea.form-input {
    resize: vertical;
}

.create-news-form label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.create-news-form .save-btn {
    width: 200px;
    margin: 0 auto;
    display: block;
}

.edit-news-btn {
    background-color: transparent;
    border: none;
    color: #fd7e14;
    cursor: pointer;
    padding: 4px;
    transition: color 0.3s;
}

.edit-news-btn:hover {
    color: #e55a00;
}

/* User Pages Styles */
.user-page {
    width: 100%;
    max-width: 1200px;
}

.user-page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.user-id {
    font-size: 14px;
    color: #6c757d;
}

.user-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.user-tab {
    padding: 10px 20px;
    background-color: white;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    color: #6c757d;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.user-tab:hover {
    border-color: #fd7e14;
    color: #fd7e14;
}

.user-tab.active {
    background-color: #fd7e14;
    border-color: #fd7e14;
    color: white;
}

.user-card {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.user-card-title {
    font-size: 18px;
    font-weight: bold;
    color: #343a40;
    margin-bottom: 20px;
}

/* Wallet Styles */
.wallet-balance {
    font-size: 32px;
    font-weight: bold;
    color: #fd7e14;
}

.crypto-options-wallet {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.crypto-wallet-btn {
    flex: 1;
    padding: 12px;
    background-color: white;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.crypto-wallet-btn:hover {
    border-color: #fd7e14;
}

.crypto-wallet-btn.selected {
    background-color: #fd7e14;
    border-color: #fd7e14;
    color: white;
}

.get-address-btn {
    width: 100%;
    padding: 15px;
    background-color: #fd7e14;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 15px;
    transition: background-color 0.3s;
}

.get-address-btn:hover {
    background-color: #e55a00;
}

.deposit-info {
    color: #6c757d;
    font-size: 14px;
}

.deposit-info p {
    margin: 5px 0;
}

/* Deposit Address Display Styles */
.deposit-address-container {
    background-color: #f8f9fa;
    border: 2px solid #fd7e14;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    animation: fadeIn 0.3s ease-in;
}

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

.address-label {
    font-size: 14px;
    font-weight: bold;
    color: #343a40;
    margin-bottom: 10px;
}

.address-display-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
    background-color: white;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 12px;
    margin-bottom: 10px;
}

.deposit-address-text {
    flex: 1;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: #343a40;
    word-break: break-all;
    font-weight: 500;
}

.copy-address-btn {
    background-color: #fd7e14;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 36px;
}

.copy-address-btn:hover {
    background-color: #e55a00;
    transform: scale(1.05);
}

.copy-address-btn:active {
    transform: scale(0.95);
}

.copy-address-btn svg {
    stroke: currentColor;
}

.address-crypto-type {
    font-size: 12px;
    color: #6c757d;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.address-crypto-type::before {
    content: '📍';
    font-size: 14px;
}

.wallet-table-header {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1.5fr;
    gap: 15px;
    padding: 12px;
    background-color: #f8f9fa;
    border-radius: 6px;
    font-weight: bold;
    margin-bottom: 10px;
}

.wallet-table-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1.5fr;
    gap: 15px;
    padding: 12px;
    border-bottom: 1px solid #f8f9fa;
}

/* Settings Styles */
.settings-description {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 20px;
}

.auto-purchase-card {
    position: relative;
}

.auto-purchase-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 15px;
    min-height: 100px;
}

.auto-purchase-row {
    display: flex;
    gap: 8px;
    align-items: center;
}

.auto-input {
    flex: 1;
    padding: 6px 10px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    font-size: 13px;
    min-width: 0;
}

.auto-input:nth-child(1) {
    max-width: 100px;
}

.auto-input:nth-child(2) {
    max-width: 80px;
}

.auto-input:nth-child(3) {
    max-width: 60px;
}

.auto-input:focus {
    outline: none;
    border-color: #fd7e14;
}

.delete-auto-btn {
    background-color: transparent;
    border: none;
    color: #dc3545;
    cursor: pointer;
    padding: 4px;
    transition: color 0.3s;
}

.delete-auto-btn:hover {
    color: #c82333;
}

.empty-auto-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 30px;
    color: #6c757d;
    font-size: 14px;
}

.add-auto-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #fd7e14;
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.add-auto-btn:hover {
    background-color: #e55a00;
}

.save-settings-btn {
    width: 200px;
    margin: 20px auto 0;
    display: block;
    padding: 12px;
    background-color: #fd7e14;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
}

.password-section {
    display: flex;
    gap: 15px;
    align-items: center;
}

.password-input {
    flex: 1;
    padding: 12px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    background-color: #f8f9fa;
}

.copy-password-btn,
.regenerate-btn {
    padding: 12px 24px;
    background-color: #fd7e14;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.copy-password-btn:hover,
.regenerate-btn:hover {
    background-color: #e55a00;
}

/* Purchases Styles */
.purchases-table {
    margin-top: 20px;
}

.purchases-table-header {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.6fr 1fr 0.7fr 0.6fr 0.7fr 0.7fr 0.6fr;
    gap: 10px;
    padding: 12px;
    background-color: #f8f9fa;
    border-radius: 6px;
    font-weight: bold;
}

.purchases-table-row {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.6fr 1fr 0.7fr 0.6fr 0.7fr 0.7fr 0.6fr;
    gap: 10px;
    padding: 12px;
    border-bottom: 1px solid #f8f9fa;
    align-items: center;
}

.purchase-header,
.purchase-cell {
    font-size: 13px;
}

.price-orange {
    color: #fd7e14;
    font-weight: bold;
}

.view-btn {
    background-color: #fd7e14;
    color: white;
    border: none;
    padding: 6px 10px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.view-btn:hover {
    background-color: #e55a00;
}

/* Chat Styles */
.chat-card {
    position: relative;
}

.chat-messages-container {
    max-height: 500px;
    overflow-y: auto;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 6px;
    margin-bottom: 20px;
}

.chat-messages-container::-webkit-scrollbar {
    width: 8px;
}

.chat-messages-container::-webkit-scrollbar-track {
    background: #e9ecef;
}

.chat-messages-container::-webkit-scrollbar-thumb {
    background: #fd7e14;
    border-radius: 4px;
}

.empty-chat-message {
    text-align: center;
    padding: 60px 20px;
    color: #6c757d;
}

.empty-chat-message svg {
    margin-bottom: 15px;
    opacity: 0.5;
}

.empty-chat-message p {
    font-size: 14px;
    margin: 0;
}

.chat-message {
    margin-bottom: 15px;
    padding: 12px;
    border-radius: 6px;
    max-width: 70%;
}

.member-msg {
    background-color: white;
    margin-right: auto;
}

.support-msg {
    background-color: #fff3e0;
    margin-left: auto;
}

.message-sender {
    font-size: 12px;
    font-weight: bold;
    color: #6c757d;
    margin-bottom: 5px;
}

.message-text {
    font-size: 14px;
    color: #343a40;
    line-height: 1.5;
}

.chat-input-container {
    position: relative;
}

.chat-length-info {
    text-align: right;
    font-size: 12px;
    color: #6c757d;
    margin-bottom: 10px;
}

.chat-message-input {
    width: 100%;
    min-height: 100px;
    padding: 12px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    font-size: 14px;
    resize: vertical;
    margin-bottom: 15px;
}

.send-message-btn {
    display: block;
    margin: 0 auto;
    padding: 12px 40px;
    background-color: #fd7e14;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.send-message-btn:hover {
    background-color: #e55a00;
}

/* FAQ Styles */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-question {
    padding: 18px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
    font-weight: 500;
    color: #343a40;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-arrow {
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-answer {
    padding: 0 20px 18px 20px;
    color: #6c757d;
    font-size: 14px;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .container {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .crypto-options {
        grid-template-columns: 1fr;
    }
    
    .filters-grid {
        grid-template-columns: 1fr;
    }
    
    .bases-table .table-header,
    .bases-table .table-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .filter-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .checker-layout {
        grid-template-columns: 1fr;
    }
    
    .checker-sidebar {
        order: 2;
    }
    
    .checker-main {
        order: 1;
    }
}
