/* Custom Styling for Bean Auction */

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Glassmorphism Panel */
.glass-card {
    background: rgba(22, 26, 34, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Fix for TradingView Widget border removing */
.tradingview-widget-container iframe {
    border-radius: 0 0 0.75rem 0.75rem;
}

/* Fade In Animation for Modals */
.fade-in {
    animation: fadeIn 0.3s ease-out forwards;
}

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

/* Custom Scrollbar for dark theme */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #0B0E14; 
}

::-webkit-scrollbar-thumb {
    background: #2A2E39; 
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #D4AF37; 
}
