/* Elegant hover effect for buttons and sidebar links */
.elegant-hover {
    transition: all 0.3s ease;
    background: linear-gradient(to right, #3b82f6 0%, transparent 0%);
    background-size: 200% 100%;
    background-position: 0% 0%;
}
.elegant-hover:hover {
    background-position: 100% 0%;
    color: #fff;
    box-shadow: 0 0 5px rgba(59, 130, 246, 0.5);
}
.neon-input {
    border: 2px solid #3b82f6;
    transition: all 0.3s ease;
}
.neon-input:focus {
    outline: none;
    border-color: #60a5fa;
    box-shadow: 0 0 8px rgba(96, 165, 250, 0.5);
}
body {
    background: linear-gradient(135deg, #1f2937, #111827);
}
.bg-gray-850 {
    background-color: #1f252f;
}
canvas {
    border-radius: 8px;
}
table {
    border-collapse: separate;
    border-spacing: 0;
}
th, td {
    border-bottom: 1px solid #4b5563;
}
aside {
    border-right: 1px solid #4b5563;
}
/* Trading-themed loader styles */
.trading-loader {
    position: relative;
    filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.5));
}
.chart-line {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: chart-line-anim 3s ease-in-out infinite;
}
.candlestick {
    animation: candlestick-anim 2s ease-in-out infinite;
}
.candlestick:nth-child(2) {
    animation-delay: 0.5s;
}
.candlestick:nth-child(3) {
    animation-delay: 1s;
}
.candlestick:nth-child(4) {
    animation-delay: 1.5s;
}
@keyframes chart-line-anim {
    0% {
        stroke-dashoffset: 200;
        transform: translateY(0);
    }
    50% {
        stroke-dashoffset: 0;
        transform: translateY(-5px);
    }
    100% {
        stroke-dashoffset: -200;
        transform: translateY(0);
    }
}
@keyframes candlestick-anim {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-3px);
        opacity: 1;
    }
}
/* Tab styles */
.tab-button.active-tab {
    border-bottom: 2px solid #3b82f6;
    color: #fff;
}

.main-deposit {
        display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}