/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */


/* ===== Global Styles for CoinPrime Auth Pages ===== */

body {
    background: linear-gradient(135deg, #0c0c0c 0%, #212121 50%, #0c0c0c 100%);
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    color: black;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}


/* ===== GLOBAL HEADING STYLES FOR LANDING PAGES ===== */

/* Override Bootstrap heading colors for dark theme */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

/* Specific heading sizes that work with Bootstrap */
h1, .h1 { 
    font-size: 2.5rem;
    font-weight: 700;
}

h2, .h2 { 
    font-size: 2rem;
    font-weight: 600;
}

h3, .h3 { 
    font-size: 1.75rem;
}

h4, .h4 { 
    font-size: 1.5rem;
}

h5, .h5 { 
    font-size: 1.25rem;
}

h6, .h6 { 
    font-size: 1rem;
}

/* Paragraph styles */
p {
    line-height: 1.6;
    margin-bottom: 1rem;
}
.form-link a {
    color: white !important;
    text-decoration: none !important;
    position: relative;
    transition: all 0.3s ease;
}

.form-link a:hover {
    color: white !important;
}

.form-link a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #f3cf3b;
    transition: width 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.form-link a:hover::after {
    width: 100%;
    opacity: 1;
}

.lead {
    font-size: 1.125rem;
    color: #cccccc;
    font-weight: 400;
}

/* Override Bootstrap text utilities for dark theme */
.text-dark {
    color: #ffffff !important;
}

.text-black {
    color: #ffffff !important;
}

.text-muted {
    color: #888888 !important;
}

/* Card styles for dark theme */
.card {
    background: #1c1c1c !important;
    border: 1px solid #333 !important;
    color: #ffffff !important;
}

.card-body {
    color: #ffffff !important;
}

/* Background overrides */
.bg-light {
    background-color: #2a2a2a !important;
}

.bg-white {
    background-color: #1c1c1c !important;
}

.container {
    padding: 20px;
}

.auth-box,
.auth-card {
    background: rgba(28, 28, 28, 0.95);
    border-radius: 24px;
    padding: 48px 40px;
    max-width: 480px;
    width: 100%;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(252, 213, 53, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin: auto;
    animation: fadeInUp 0.6s ease-out;
}

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

.brand-bar,
.auth-logo-row {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 20px 28px;
    border-radius: 16px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid rgba(252, 213, 53, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.logo-box {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #FCD535 0%, #F0B90B 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #000;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(252, 213, 53, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-box:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(252, 213, 53, 0.4);
}

/* Form Labels - White and Clear */
.form-label {
    color: #ffffff !important;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
    display: block;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Form Controls */
.form-control {
    background: #2a2a2a !important;
    border: 2px solid #3a3a3a !important;
    color: #ffffff !important;
    border-radius: 12px !important;
    padding: 14px 16px !important;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-control::placeholder {
    color: #888 !important;
    opacity: 1;
}

.form-control:focus {
    border-color: #FCD535 !important;
    box-shadow: 
        0 0 0 3px rgba(252, 213, 53, 0.1),
        inset 0 2px 4px rgba(0, 0, 0, 0.1) !important;
    background: #2d2d2d !important;
    transform: translateY(-1px);
}

/* Checkbox Styles */
.form-check-input {
    background-color: #2a2a2a;
    border: 2px solid #3a3a3a;
    border-radius: 6px;
    width: 18px;
    height: 18px;
    margin-top: 0.1em;
}

.form-check-input:checked {
    background-color: #FCD535;
    border-color: #FCD535;
}

.form-check-input:focus {
    border-color: #FCD535;
    box-shadow: 0 0 0 3px rgba(252, 213, 53, 0.1);
}

.form-check-label {
    color: #ffffff !important;
    font-size: 14px;
    cursor: pointer;
}

/* Button Styles */
.btn-yellow {
    background: linear-gradient(135deg, #FCD535 0%, #F0B90B 100%);
    color: #000000;
    width: 100%;
    font-weight: 700;
    padding: 16px;
    border-radius: 12px;
    border: none;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 15px rgba(252, 213, 53, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.btn-yellow:hover {
    background: linear-gradient(135deg, #F0B90B 0%, #E5AE0A 100%);
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(252, 213, 53, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn-yellow:active {
    transform: translateY(0);
    box-shadow: 
        0 2px 8px rgba(252, 213, 53, 0.3),
        0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Link Styles */
a {
    color: #FCD535;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(252, 213, 53, 0.5);
}

/* a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: #FCD535;
    transition: width 0.3s ease;
}

a:hover::after {
    width: 100%;
} */

/* Text Styles */
.text-secondary {
    color: #b0b0b0 !important;
    font-size: 14px;
    line-height: 1.5;
}

h2.fw-bold {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

h5.fw-semibold {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .auth-box,
    .auth-card {
        padding: 32px 24px;
        margin: 20px;
        border-radius: 20px;
    }
    
    .brand-bar,
    .auth-logo-row {
        padding: 16px 20px;
        margin-bottom: 24px;
    }
    
    h2.fw-bold {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 10px;
    }
    
    .auth-box,
    .auth-card {
        padding: 24px 20px;
        margin: 10px;
    }
    
    .form-control {
        padding: 12px 14px !important;
    }
}

/* Loading state for buttons */
.btn-yellow.loading {
    pointer-events: none;
    opacity: 0.8;
}

.btn-yellow.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid #000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Focus states for accessibility */
.form-control:focus-visible,
.btn-yellow:focus-visible,
.form-check-input:focus-visible {
    outline: 2px solid #FCD535;
    outline-offset: 2px;
}

/* Error states */
.form-control.is-invalid {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1) !important;
}

.invalid-feedback {
    color: #dc3545;
    font-size: 13px;
    margin-top: 6px;
    font-weight: 500;
}
/* ===== DASHBOARD STYLES ===== */

/* Navigation */
.cp-navbar {
    background: #1a1a1a !important;
    border-bottom: 1px solid #333;
    padding: 12px 0;
}

.cp-nav-active {
    color: #FCD535 !important;
    position: relative;
}

.cp-nav-active::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #FCD535;
}

.cp-nav-link {
    transition: color 0.3s ease;
}

.cp-nav-link:hover {
    color: #FCD535 !important;
}

/* User Menu */
.cp-user-btn {
    padding: 8px 12px !important;
    border-radius: 8px !important;
    transition: all 0.3s ease;
}

.cp-user-btn:hover {
    background: #2a2a2a !important;
    border-color: #444 !important;
}

.cp-user-avatar {
    width: 32px;
    height: 32px;
    font-size: 14px;
    font-weight: 700;
}

.cp-dropdown-menu {
    border: 1px solid #444;
    border-radius: 8px;
    padding: 8px;
}

.cp-dropdown-menu .dropdown-item {
    border-radius: 6px;
    padding: 8px 12px;
    transition: all 0.3s ease;
}

.cp-dropdown-menu .dropdown-item:hover {
    background: #2a2a2a;
    color: #FCD535;
}

/* Balance Card */
.cp-balance-card {
    border: 1px solid #333 !important;
    border-radius: 12px !important;
}

.cp-balance-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
}

/* Action Buttons */
.cp-action-btn {
    padding: 10px 20px !important;
    border-radius: 8px !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-yellow.cp-action-btn {
    padding: 10px 24px !important;
}

/* Portfolio Table */
.cp-portfolio-table th {
    border-bottom: 1px solid #333;
    color: #b0b0b0;
    font-weight: 500;
    font-size: 0.875rem;
    padding: 16px 12px;
    background: #1a1a1a;
}

.cp-portfolio-table td {
    border-bottom: 1px solid #2a2a2a;
    vertical-align: middle;
    padding: 16px 12px;
}

.cp-portfolio-table tbody tr:hover {
    background: #2a2a2a;
}

/* Asset Icons */
.cp-asset-icon {
    width: 40px;
    height: 40px;
    font-weight: 700;
    font-size: 14px;
}

/* Trade Buttons */
.cp-trade-btn {
    padding: 6px 16px !important;
    border-radius: 6px !important;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cp-trade-btn:hover {
    background: #FCD535 !important;
    color: #000 !important;
    border-color: #FCD535 !important;
}

/* Quick Actions */
.cp-quick-action {
    border-radius: 8px !important;
    transition: all 0.3s ease;
    border: 1px solid #444 !important;
}

.cp-quick-action:hover {
    background: #2a2a2a !important;
    border-color: #FCD535 !important;
    color: #FCD535 !important;
    transform: translateY(-2px);
}

/* Market List */
.cp-market-list .list-group-item {
    transition: background 0.3s ease;
}

.cp-market-list .list-group-item:hover {
    background: #2a2a2a !important;
}

/* Change Indicators */
.cp-change-positive {
    color: #22c55e !important;
    background: rgba(34, 197, 94, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.875rem;
}

.cp-change-negative {
    color: #ef4444 !important;
    background: rgba(239, 68, 68, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.875rem;
}

/* Badges */
.badge.bg-success {
    background: rgba(34, 197, 94, 0.1) !important;
    color: #22c55e !important;
    padding: 6px 10px;
    border-radius: 6px;
    font-weight: 600;
}


/* ===== PRODUCTION-LEVEL DASHBOARD STYLES ===== */

/* Professional Button System */
.btn-dark {
    background: #1a1a1a !important;
    border: 1px solid #333 !important;
    color: #fff !important;
    font-weight: 500;
    padding: 6px 16px !important;
    font-size: 0.875rem;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-dark:hover {
    background: #2a2a2a !important;
    border-color: #666 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-dark.border-warning {
    border-color: #FCD535 !important;
    color: #fff !important;
}

.btn-dark.border-warning:hover {
    background: #FCD535 !important;
    border-color: #FCD535 !important;
    color: #000 !important;
    box-shadow: 0 4px 12px rgba(252, 213, 53, 0.2);
}

/* Active State for Buttons */
.btn-dark.active {
    background: #FCD535 !important;
    border-color: #FCD535 !important;
    color: #000 !important;
}

/* Button Sizes */
.btn-sm {
    padding: 5px 12px !important;
    font-size: 0.8125rem !important;
    border-radius: 6px !important;
}

/* Improved Navigation */
.cp-navbar {
    background: #0a0a0a !important;
    border-bottom: 1px solid #222;
    padding: 12px 0;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1030; /* Higher than dropdown */
}

.cp-nav-active {
    color: #FCD535 !important;
    position: relative;
    font-weight: 600;
}

.cp-nav-active::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #FCD535;
    border-radius: 1px;
}

.cp-nav-link {
    transition: all 0.2s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.cp-nav-link:hover {
    color: #FCD535 !important;
}

/* Mobile Navigation */
.cp-mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0a0a0a;
    border-top: 1px solid #333;
    z-index: 1040;
    padding: 8px 0;
}

.cp-mobile-nav-item {
    flex: 1;
    text-align: center;
    padding: 8px 4px;
    color: #888;
    text-decoration: none;
    font-size: 0.75rem;
    transition: all 0.2s ease;
}

.cp-mobile-nav-item.active {
    color: #FCD535;
}

.cp-mobile-nav-item i {
    display: block;
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.cp-mobile-nav-item:hover {
    color: #FCD535;
}

/* Dropdown z-index fix */
.cp-dropdown-menu {
    border: 1px solid #444;
    border-radius: 8px;
    padding: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    z-index: 1060 !important; /* Higher than navbar */
    position: absolute !important;
}

.dropdown-menu {
    z-index: 1060 !important;
}

/* Ensure dropdown backdrop doesn't interfere */
.dropdown-backdrop {
    z-index: 1050 !important;
}

/* Professional Balance Card */
.cp-balance-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%) !important;
    border: 1px solid #333 !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.cp-balance-amount {
    font-size: 2.25rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Professional Tables */
.cp-portfolio-table th {
    border-bottom: 1px solid #333;
    color: #888;
    font-weight: 600;
    font-size: 0.75rem;
    padding: 14px 16px;
    background: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cp-portfolio-table td {
    border-bottom: 1px solid #2a2a2a;
    vertical-align: middle;
    padding: 14px 16px;
    font-size: 0.875rem;
    font-weight: 500;
}

.cp-portfolio-table tbody tr {
    transition: all 0.2s ease;
}

.cp-portfolio-table tbody tr:hover {
    background: #2a2a2a;
    transform: translateX(2px);
}

/* Order Book Professional Styling */
.cp-orderbook-table {
    font-size: 0.8rem;
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', monospace;
}

.cp-orderbook-table th {
    background: #1a1a1a;
    border-bottom: 1px solid #333;
    padding: 10px 12px;
    font-weight: 600;
}

.cp-orderbook-table td {
    padding: 8px 12px;
    border: none;
    font-weight: 500;
}

.cp-orderbook-ask {
    background: linear-gradient(90deg, rgba(220, 53, 69, 0.03) 0%, transparent 100%);
    transition: background 0.2s ease;
}

.cp-orderbook-ask:hover {
    background: linear-gradient(90deg, rgba(220, 53, 69, 0.08) 0%, transparent 100%);
}

.cp-orderbook-bid {
    background: linear-gradient(90deg, rgba(40, 167, 69, 0.03) 0%, transparent 100%);
    transition: background 0.2s ease;
}

.cp-orderbook-bid:hover {
    background: linear-gradient(90deg, rgba(40, 167, 69, 0.08) 0%, transparent 100%);
}

.cp-orderbook-current {
    background: linear-gradient(90deg, rgba(252, 213, 53, 0.1) 0%, transparent 100%);
    border-top: 1px solid #FCD535;
    border-bottom: 1px solid #FCD535;
    font-weight: 700;
}

/* Professional Asset Icons */
.cp-asset-icon {
    width: 36px;
    height: 36px;
    font-weight: 700;
    font-size: 0.8rem;
    border: 1px solid #444 !important;
    transition: all 0.2s ease;
}

.cp-asset-icon:hover {
    border-color: #FCD535 !important;
    transform: scale(1.05);
}

/* Text Utilities */
.tracking-wide {
    letter-spacing: 0.05em;
}

/* Card Professional Styling */
.card {
    background: #1a1a1a !important;
    border: 1px solid #333 !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.2s ease;
}

.card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.card-header {
    background: transparent !important;
    border-color: #333 !important;
}

/* Quick Actions Professional */
.cp-quick-action {
    border-radius: 8px !important;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #444 !important;
    font-size: 0.8rem;
    font-weight: 500;
}

.cp-quick-action:hover {
    background: #2a2a2a !important;
    border-color: #FCD535 !important;
    color: #FCD535 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(252, 213, 53, 0.15);
}

/* User Menu Professional */
.cp-user-btn {
    padding: 6px 12px !important;
    border-radius: 8px !important;
    transition: all 0.2s ease;
    font-weight: 500;
    z-index: 1061 !important; /* Higher than dropdown */
    position: relative;
}

.cp-user-btn:hover {
    background: #2a2a2a !important;
    border-color: #FCD535 !important;
}

.cp-user-avatar {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
    font-weight: 700;
}

.cp-dropdown-menu .dropdown-item {
    border-radius: 6px;
    padding: 8px 12px;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    font-weight: 500;
}

.cp-dropdown-menu .dropdown-item:hover {
    background: #2a2a2a;
    color: #FCD535;
}

/* Professional Color Scheme */
.text-success {
    color: #00c087 !important;
    font-weight: 600;
}

.text-danger {
    color: #ff6838 !important;
    font-weight: 600;
}

.text-warning {
    color: #FCD535 !important;
    font-weight: 600;
}

/* Professional Borders */
.border-secondary {
    border-color: #333 !important;
}

.border-warning {
    border-color: #FCD535 !important;
}

/* Responsive Professional */
@media (max-width: 768px) {
    .cp-balance-amount {
        font-size: 1.875rem;
    }
    
    .container-fluid {
        padding-left: 12px;
        padding-right: 12px;
    }
    
    .card-body.p-4 {
        padding: 1.5rem !important;
    }
    
    .btn-sm {
        padding: 4px 10px !important;
        font-size: 0.75rem !important;
    }
    
    /* Hide desktop nav on mobile */
    .d-none.d-md-flex {
        display: none !important;
    }
    
    /* Show mobile nav */
    .cp-mobile-nav {
        display: flex !important;
    }
    
    /* Adjust content padding for mobile nav */
    body {
        padding-bottom: 60px;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1rem;
    }
    
    .logo-box {
        width: 32px;
        height: 32px;
        font-size: 0.875rem;
    }
    
    .cp-user-btn span {
        display: none !important;
    }
}

/* Smooth Transitions */
* {
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

/* Bootstrap Dropdown Override */
.dropdown {
    position: relative;
    z-index: 1060;
}

.dropdown-menu {
    z-index: 1060 !important;
    position: absolute !important;
}

/* Ensure proper stacking context */
.cp-navbar > .container-fluid {
    position: relative;
    z-index: 1030;
}

/* Additional CSS for production dashboard */
.bg-purple {
    background-color: #6f42c1 !important;
}

.bg-yellow {
    background-color: #ffc107 !important;
}

.cp-recent-activity .list-group-item {
    transition: all 0.2s ease;
    border-color: #333;
}

.cp-recent-activity .list-group-item:hover {
    background: #2a2a2a;
    transform: translateX(2px);
}

/* Chart improvements */
.cp-chart-placeholder {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%) !important;
    border: 1px solid #333 !important;
}

/* Better number formatting */
.cp-portfolio-table td,
.cp-orderbook-table td {
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum";
}
/*Asin Css  */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: brightness(0) invert(1) ; 
}
.auth-card strong {
	color: #000 !important;
}
.auth-card .form-text {
	color: #6c757d !important;
}
/* end */

/* Responsive improvements */
@media (max-width: 768px) {
    .cp-balance-amount {
        font-size: 1.75rem;
    }
    
    .card-body.p-4 {
        padding: 1.5rem !important;
    }
    
    .cp-chart-placeholder {
        height: 200px !important;
    }
}
/* Responsive */
@media (max-width: 768px) {
    .cp-balance-amount {
        font-size: 2rem;
    }
    
    .cp-action-btn {
        padding: 8px 16px !important;
        font-size: 0.875rem;
    }
    
    .cp-portfolio-table th,
    .cp-portfolio-table td {
        padding: 12px 8px;
        font-size: 0.875rem;
    }
    
    .cp-asset-icon {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .container-fluid {
        padding-left: 12px;
        padding-right: 12px;
    }
    
    .card-body.p-4 {
        padding: 1.5rem !important;
    }
    
    .cp-balance-amount {
        font-size: 1.75rem;
    }
}