/* =====================================================
   ENHANCED QUICK TRADE STYLES
   ===================================================== */

/* Price Change Display Styles */
.price-change {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 8px;
    transition: all 0.3s ease;
}

.price-change-positive {
    color: #22c55e;
}

.price-change-negative {
    color: #ef4444;
}

.price-change-neutral {
    color: #6b7280;
}

/* Quick Trade Panel - Inline Trading Interface */
.quick-trade-panel {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(22, 33, 62, 0.95) 100%);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.quick-trade-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    animation: shimmer 2s infinite;
    opacity: 0;
    transition: opacity 0.3s;
}

.quick-trade-panel.executing::before {
    opacity: 1;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Instant feedback animations for ultra-responsive UI */
@keyframes pulseAnimation {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 0 20px 10px rgba(212, 175, 55, 0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

@keyframes instantExecute {
    0% {
        background: linear-gradient(45deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.2));
    }
    50% {
        background: linear-gradient(45deg, rgba(212, 175, 55, 0.3), rgba(212, 175, 55, 0.4));
    }
    100% {
        background: linear-gradient(45deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.2));
    }
}

.pulse-animation {
    animation: pulseAnimation 0.6s ease-out;
}

.quick-trade-panel.executing {
    animation: instantExecute 0.3s ease-out !important;
    transition: all 0.15s ease-out !important;
}

/* Instant button feedback for ultra-responsive feel */
.quick-action-btn:active,
.quick-buy-btn:active,
.quick-sell-btn:active {
    transform: scale(0.98) !important;
    transition: transform 0.05s !important;
}

/* Success/Error States */
.quick-trade-panel.success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.quick-trade-panel.error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.1) 100%);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Enhanced Success States for Buy/Sell */
.quick-trade-panel.success-buy {
    animation: successBuyFlash 0.5s ease-out;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.15) 100%);
    border: 2px solid rgba(16, 185, 129, 0.5);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.3);
}

.quick-trade-panel.success-sell {
    animation: successSellFlash 0.5s ease-out;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(220, 38, 38, 0.15) 100%);
    border: 2px solid rgba(239, 68, 68, 0.5);
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.3);
}

@keyframes successBuyFlash {
    0% {
        background: linear-gradient(135deg, rgba(16, 185, 129, 0.4) 0%, rgba(5, 150, 105, 0.4) 100%);
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.15) 100%);
        transform: scale(1);
    }
}

@keyframes successSellFlash {
    0% {
        background: linear-gradient(135deg, rgba(239, 68, 68, 0.4) 0%, rgba(220, 38, 38, 0.4) 100%);
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(220, 38, 38, 0.15) 100%);
        transform: scale(1);
    }
}

/* Trade Checkmark Animation */
.trade-checkmark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 100px;
    color: #10b981;
    font-weight: bold;
    animation: checkmarkPop 0.8s ease-out;
    text-shadow: 0 0 40px rgba(16, 185, 129, 0.8);
    pointer-events: none;
    z-index: 100;
}

@keyframes checkmarkPop {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.3);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.2);
    }
    100% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Detailed Notification Styles */
.notification.detailed-notification {
    animation: slideInRight 0.3s ease-out;
}

.notification-header {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.notification-line {
    font-size: 14px;
    line-height: 1.6;
    margin: 4px 0;
    opacity: 0.95;
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutRight {
    0% {
        opacity: 1;
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        transform: translateX(100px);
    }
}

/* Trade History Widget */
.trade-history-widget {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(22, 33, 62, 0.95) 100%);
    border-radius: 16px;
    padding: 20px;
    margin-top: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.trade-history-widget .widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.trade-history-widget h3 {
    color: #d4af37;
    font-size: 18px;
    margin: 0;
}

.clear-history-btn {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #d4af37;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.clear-history-btn:hover {
    background: rgba(212, 175, 55, 0.2);
}

.trade-history-list {
    max-height: 400px;
    overflow-y: auto;
}

.trade-history-item {
    background: rgba(10, 11, 20, 0.4);
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.trade-history-item:hover {
    background: rgba(10, 11, 20, 0.6);
    border-color: rgba(212, 175, 55, 0.2);
}

.trade-history-item.buy {
    border-left: 3px solid #10b981;
}

.trade-history-item.sell {
    border-left: 3px solid #ef4444;
}

.trade-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trade-symbol {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

.trade-side {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.trade-side.buy {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.trade-side.sell {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.trade-details {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.trade-price {
    color: #d4af37;
    font-weight: 600;
    font-size: 14px;
}

.trade-qty {
    color: #999;
    font-size: 12px;
}

.trade-time {
    color: #666;
    font-size: 11px;
}

.no-trades {
    text-align: center;
    color: #666;
    padding: 30px;
    font-style: italic;
}

/* Mobile Trade Success Notification */
.mobile-trade-success {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 16px;
    padding: 20px;
    color: white;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    z-index: 10000;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    min-width: 280px;
}

.mobile-trade-success.show {
    transform: translateX(-50%) translateY(0);
}

.mobile-success-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: bold;
    animation: checkmarkPop 0.8s ease-out;
}

.mobile-success-details {
    flex: 1;
}

.mobile-success-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.mobile-success-price {
    font-size: 20px;
    font-weight: 800;
}

.mobile-success-qty {
    font-size: 14px;
    opacity: 0.9;
    margin-top: 3px;
}

/* Loading States and Spinners */
.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    margin-right: 8px;
}

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

/* Button Loading State */
.btn-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.8;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border: 2px solid transparent;
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

/* Progress Bar - MASSIVELY ENHANCED FOR MAXIMUM VISIBILITY */
.order-progress-bar {
    display: none;
    height: 40px !important; /* Much taller for visibility */
    background: rgba(0, 0, 0, 0.9) !important; /* Dark background for contrast */
    border-radius: 20px !important;
    margin-top: 12px;
    overflow: hidden;
    position: fixed !important;
    top: 50% !important; /* Center of screen */
    left: 50% !important;
    transform: translateX(-50%) translateY(-50%) !important;
    width: 80% !important; /* Wider bar */
    max-width: 600px !important;
    z-index: 999999 !important; /* Maximum z-index */
    box-shadow: 0 10px 60px rgba(212, 175, 55, 0.8), 
                0 0 100px rgba(212, 175, 55, 0.4) !important;
    border: 3px solid #d4af37 !important;
    backdrop-filter: blur(10px);
}

.order-progress-bar.active {
    display: block !important;
    animation: slideInBounce 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes slideInBounce {
    0% { 
        opacity: 0; 
        transform: translateX(-50%) translateY(-50%) scale(0.3);
    }
    50% {
        transform: translateX(-50%) translateY(-50%) scale(1.05);
    }
    100% { 
        opacity: 1; 
        transform: translateX(-50%) translateY(-50%) scale(1);
    }
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, 
        #d4af37 0%, 
        #ffdd57 25%, 
        #fff 50%, 
        #ffdd57 75%, 
        #d4af37 100%) !important;
    background-size: 200% 100%;
    border-radius: 17px;
    width: 0%;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: shimmer 1s linear infinite;
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.3),
                0 0 20px rgba(212, 175, 55, 0.8);
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.progress-fill.processing {
    width: 30%;
}

.progress-fill.confirming {
    width: 70%;
}

.progress-fill.complete {
    width: 100%;
    background: #10b981;
    animation: none;
}

.progress-fill.error {
    width: 100%;
    background: #ef4444;
    animation: none;
}

/* Button State Classes */
.buy-btn.loading,
.sell-btn.loading {
    background: #666 !important;
    cursor: not-allowed;
    pointer-events: none;
}

.buy-btn.success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
}

.sell-btn.success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
}

.buy-btn.error,
.sell-btn.error {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
}

/* Order Status Text - MASSIVELY ENHANCED FOR VISIBILITY */
.order-status {
    display: none;
    text-align: center;
    font-size: 24px !important; /* Much larger text */
    margin-top: 8px;
    font-weight: 900 !important; /* Extra bold */
    position: fixed !important;
    top: calc(50% + 40px) !important; /* Just below the progress bar */
    left: 50% !important;
    transform: translateX(-50%);
    z-index: 999999 !important;
    background: rgba(10, 11, 20, 0.95);
    padding: 15px 40px !important;
    border-radius: 30px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.8),
                0 0 60px rgba(212, 175, 55, 0.4);
    border: 2px solid #d4af37 !important;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.order-status.active {
    display: block !important;
    animation: fadeIn 0.3s ease-out;
}

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

.order-status.processing {
    color: #d4af37;
}

.order-status.success {
    color: #10b981;
}

.order-status.error {
    color: #ef4444;
}

/* Trade Side Toggle - Enhanced */
.trade-side-toggle {
    display: flex;
    gap: 0;
    margin-bottom: 20px;
    background: rgba(10, 11, 20, 0.6);
    border-radius: 12px;
    padding: 4px;
    position: relative;
}

.side-toggle-btn {
    flex: 1;
    min-height: 48px; /* Increased for mobile touch targets */
    padding: 12px 20px;
    background: transparent;
    border: none;
    border-radius: 10px;
    color: #999;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

/* Touch feedback */
.side-toggle-btn:active {
    transform: scale(0.98);
}

.side-toggle-btn.active {
    color: #0a0b14;
    font-weight: 700;
}

#buy-toggle.active {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

#sell-toggle.active {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

/* Position Preset Buttons */
.position-presets {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.preset-btn {
    flex: 1;
    min-width: 60px;
    min-height: 44px; /* Mobile touch target */
    padding: 10px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    color: #d4af37;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
}

.preset-btn:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.2);
}

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

.preset-btn.active {
    background: #d4af37;
    color: #0a0b14;
}

/* Ripple effect */
.ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    animation: ripple-effect 0.6s ease-out;
}

@keyframes ripple-effect {
    to {
        width: 200px;
        height: 200px;
        opacity: 0;
    }
}

/* Amount Input with USD Display */
.amount-input-group {
    position: relative;
    margin-bottom: 15px;
}

.amount-with-usd {
    display: flex;
    align-items: center;
    gap: 10px;
}

.amount-with-usd input {
    flex: 1;
    min-height: 48px; /* Mobile touch target */
    padding: 12px 15px;
    background: rgba(10, 11, 20, 0.8);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
}

.usd-value {
    color: #999;
    font-size: 0.9rem;
    min-width: 100px;
}

/* P&L Preview */
.pnl-preview {
    display: flex;
    gap: 15px;
    padding: 10px;
    background: rgba(10, 11, 20, 0.4);
    border-radius: 8px;
    margin-bottom: 15px;
}

.pnl-item {
    flex: 1;
    text-align: center;
}

.pnl-item.loss {
    color: #ef4444;
}

.pnl-item.profit {
    color: #10b981;
}

.pnl-item span {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 5px;
    opacity: 0.7;
}

.pnl-item strong {
    font-size: 1.1rem;
}

/* Execute Button - Enhanced */
.execute-btn,
.quick-execute-btn {
    width: 100%;
    min-height: 56px; /* Larger mobile touch target */
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.execute-btn.buy-mode,
.quick-execute-btn.buy-mode {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.execute-btn.sell-mode,
.quick-execute-btn.sell-mode {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.3);
}

.execute-btn:hover,
.quick-execute-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
}

.execute-btn:active,
.quick-execute-btn:active {
    transform: translateY(0);
}

.execute-btn.loading,
.quick-execute-btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.execute-btn.loading::after,
.quick-execute-btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Quick Trade Input Group Improvements */
.quick-trade-input-group {
    margin-bottom: 18px;
}

.quick-trade-input-group label {
    display: block;
    color: #999;
    font-size: 0.85rem;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.quick-trade-input-group input {
    width: 100%;
    min-height: 48px;
    padding: 12px 15px;
    background: rgba(10, 11, 20, 0.8);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.2s;
}

.quick-trade-input-group input:focus {
    border-color: #d4af37;
    outline: none;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

/* Mobile-specific enhancements */
@media (max-width: 768px) {
    .quick-trade-panel {
        padding: 15px;
        margin: 10px;
        border-radius: 12px;
    }
    
    .side-toggle-btn {
        min-height: 52px; /* Even larger on mobile */
        font-size: 0.95rem;
    }
    
    .preset-btn {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .execute-btn,
    .quick-execute-btn {
        min-height: 60px;
        font-size: 1rem;
    }
    
    /* Add haptic-like visual feedback */
    .btn:active,
    .side-toggle-btn:active,
    .preset-btn:active,
    .execute-btn:active,
    .quick-execute-btn:active {
        background-color: rgba(255, 255, 255, 0.1);
    }
    
    /* Increase spacing between interactive elements */
    .quick-trade-input-group {
        margin-bottom: 20px;
    }
    
    /* Make inputs larger and more touch-friendly */
    input[type="number"],
    input[type="text"],
    select {
        min-height: 48px !important;
        font-size: 16px !important; /* Prevents zoom on iOS */
        padding: 12px 15px !important;
    }
    
    /* Add visual tap highlights */
    button, .btn, input, select {
        -webkit-tap-highlight-color: rgba(212, 175, 55, 0.2);
    }
    
    /* Mobile-optimized loading states */
    .buy-btn.loading,
    .sell-btn.loading {
        font-size: 14px;
        min-height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Mobile-optimized spinner */
    .spinner {
        width: 14px;
        height: 14px;
        border-width: 2px;
        margin-right: 6px;
    }
    
    /* Mobile-optimized progress bar */
    .order-progress-bar {
        height: 3px;
        margin-top: 10px;
        margin-left: -15px;
        margin-right: -15px;
        width: calc(100% + 30px);
    }
    
    /* Mobile-optimized status text */
    .order-status {
        font-size: 11px;
        margin-top: 8px;
        padding: 0 10px;
    }
    
    /* Ensure success/error states don't shift layout */
    .buy-btn.success,
    .sell-btn.success,
    .buy-btn.error,
    .sell-btn.error {
        min-height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
    }
    
    /* Prevent double-tap zoom during loading */
    .buy-btn.loading,
    .sell-btn.loading,
    .buy-btn.success,
    .sell-btn.success,
    .buy-btn.error,
    .sell-btn.error {
        touch-action: manipulation;
    }
}

/* Notification styles - Enhanced */
.notification {
    position: fixed;
    top: 80px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    z-index: 10000;
    animation: slideIn 0.3s ease-out;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 350px;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.notification.success {
    background: linear-gradient(135deg, #10b981, #059669);
}

.notification.error {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.notification.warning {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

/* Mobile notification position */
@media (max-width: 768px) {
    .notification {
        top: auto;
        bottom: 20px;
        left: 20px;
        right: 20px;
        max-width: none;
    }
}