/* LiquidityLens Admin - Futuristic Crypto Trading Theme */

/* ===== CSS Variables ===== */
:root {
    /* Primary Colors */
    --bg-primary: #0A0A0B;
    --profit-green: #00FF88;
    --electric-blue: #00D4FF;
    --alert-red: #FF0066;
    --accent-purple: #8B5CF6;
    --text-primary: #FFFFFF;
    --text-secondary: #A0A0A0;
    
    /* Secondary Colors */
    --bg-secondary: #141416;
    --bg-tertiary: #1A1A1D;
    --border-color: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.05);
    
    /* Gradients */
    --gradient-green: linear-gradient(135deg, var(--profit-green), var(--electric-blue));
    --gradient-purple: linear-gradient(135deg, var(--accent-purple), var(--electric-blue));
    --gradient-dark: linear-gradient(180deg, var(--bg-primary), var(--bg-secondary));
    
    /* Shadows & Effects */
    --glow-green: 0 0 20px rgba(0, 255, 136, 0.5);
    --glow-blue: 0 0 20px rgba(0, 212, 255, 0.5);
    --glow-red: 0 0 20px rgba(255, 0, 102, 0.5);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
}

/* ===== Global Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    font-weight: 400;
    min-height: 100vh;
    position: relative;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 255, 136, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
}

/* Background grid effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 1;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

/* ===== Admin Header ===== */
.admin-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.admin-header h1 {
    font-size: 4rem;
    font-weight: 900;
    background: var(--gradient-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
    }
    to {
        text-shadow: 0 0 30px rgba(0, 255, 136, 0.8), 0 0 40px rgba(0, 212, 255, 0.5);
    }
}

.admin-header p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

/* ===== Navigation Bar ===== */
.admin-nav {
    background: rgba(10, 10, 11, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--profit-green);
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-logo:hover {
    text-shadow: var(--glow-green);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--electric-blue);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-green);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* ===== Admin Grid ===== */
.admin-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 2rem;
    align-items: start;
    margin-top: 80px; /* Account for fixed nav */
}

/* ===== Glass Cards ===== */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 
        0 8px 32px 0 rgba(0, 0, 0, 0.37),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent
    );
}

.trade-form-card {
    position: relative;
}

.live-prices-card {
    position: sticky;
    top: 100px;
}

/* ===== Form Styling ===== */
.form-section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    opacity: 0.9;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input[type="number"] {
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.02em;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--electric-blue);
    box-shadow: 
        0 0 0 3px rgba(0, 212, 255, 0.1),
        inset 0 0 20px rgba(0, 212, 255, 0.05);
    background: rgba(255, 255, 255, 0.05);
}

.form-group input::placeholder {
    color: var(--text-secondary);
    opacity: 0.5;
}

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%2300D4FF' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
    appearance: none;
}

/* Fix dropdown option colors */
.form-group select option {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    padding: 0.5rem;
}

.form-group select option:hover,
.form-group select option:focus,
.form-group select option:checked {
    background-color: var(--electric-blue);
    color: var(--bg-primary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* ===== Direction Buttons ===== */
.direction-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.direction-btn {
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    position: relative;
    overflow: hidden;
}

.direction-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    transition: all 0.5s ease;
}

.direction-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.1);
}

.direction-btn.long:hover {
    border-color: var(--profit-green);
    color: var(--profit-green);
}

.direction-btn.short:hover {
    border-color: var(--alert-red);
    color: var(--alert-red);
}

.direction-btn.active.long {
    background: rgba(0, 255, 136, 0.1);
    border-color: var(--profit-green);
    color: var(--profit-green);
    box-shadow: 
        var(--glow-green),
        inset 0 0 20px rgba(0, 255, 136, 0.1);
}

.direction-btn.active.short {
    background: rgba(255, 0, 102, 0.1);
    border-color: var(--alert-red);
    color: var(--alert-red);
    box-shadow: 
        var(--glow-red),
        inset 0 0 20px rgba(255, 0, 102, 0.1);
}

/* ===== Risk/Reward Display ===== */
#riskReward {
    background: rgba(255, 255, 255, 0.02) !important;
    color: var(--electric-blue);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
    text-align: center;
    font-size: 1.1rem;
}

#riskReward.good {
    color: var(--profit-green);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

#riskReward.bad {
    color: var(--alert-red);
    text-shadow: 0 0 10px rgba(255, 0, 102, 0.3);
}

/* ===== Risk Slider ===== */
.risk-slider {
    position: relative;
    padding-top: 1rem;
}

.risk-value {
    position: absolute;
    right: 0;
    top: -0.5rem;
    font-family: 'JetBrains Mono', monospace;
    color: var(--electric-blue);
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: var(--glow-blue);
}

input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    outline: none;
    margin-top: 1rem;
    position: relative;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: var(--gradient-green);
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 
        var(--glow-green),
        0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

input[type="range"]::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: var(--gradient-green);
    cursor: pointer;
    border-radius: 50%;
    box-shadow: var(--glow-green);
    border: none;
}

/* ===== Confidence Levels ===== */
.confidence-levels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.confidence-btn {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.confidence-btn:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

.confidence-btn.active {
    background: rgba(139, 92, 246, 0.15);
    border-color: var(--accent-purple);
    color: var(--accent-purple);
    box-shadow: 
        var(--glow-purple),
        inset 0 0 20px rgba(139, 92, 246, 0.1);
}

/* ===== Submit Button ===== */
.submit-btn {
    width: 100%;
    padding: 1.25rem 2rem;
    background: var(--gradient-green);
    border: none;
    border-radius: 12px;
    color: var(--bg-primary);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        var(--glow-green),
        0 4px 20px rgba(0, 255, 136, 0.3);
    margin-top: 2.5rem;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: width 0.6s, height 0.6s;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 10px 40px rgba(0, 255, 136, 0.4),
        var(--glow-green);
}

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

.submit-btn:active::before {
    width: 300px;
    height: 300px;
}

/* ===== Live Prices Section ===== */
.live-prices-header {
    margin-bottom: 2rem;
    text-align: center;
}

.live-prices-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
    background: var(--gradient-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--profit-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 255, 136, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 136, 0);
    }
}

.price-ticker {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.price-ticker::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.05), 
        transparent
    );
    transition: left 0.5s ease;
}

.price-ticker:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.price-ticker:hover::before {
    left: 100%;
}

.ticker-symbol {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
}

.ticker-price {
    text-align: right;
}

.price-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.price-change {
    font-size: 0.9rem;
    margin-top: 0.25rem;
    font-weight: 500;
}

.price-change.positive {
    color: var(--profit-green);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.price-change.negative {
    color: var(--alert-red);
    text-shadow: 0 0 10px rgba(255, 0, 102, 0.5);
}

/* ===== Messages ===== */
.message {
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin-top: 1.5rem;
    text-align: center;
    font-weight: 500;
    animation: slideIn 0.3s ease;
}

/* Current Price Field */
#currentPrice {
    background-color: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(0, 212, 255, 0.2) !important;
    color: var(--electric-blue) !important;
    font-family: 'JetBrains Mono', monospace !important;
    font-weight: 600 !important;
    cursor: not-allowed !important;
}

#currentPrice:focus {
    outline: none !important;
    box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.1) !important;
}

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

.success-message {
    display: none;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--profit-green);
    color: var(--profit-green);
    box-shadow: 
        inset 0 0 20px rgba(0, 255, 136, 0.05),
        0 0 20px rgba(0, 255, 136, 0.2);
}

.error-message {
    display: none;
    background: rgba(255, 0, 102, 0.1);
    border: 1px solid var(--alert-red);
    color: var(--alert-red);
    box-shadow: 
        inset 0 0 20px rgba(255, 0, 102, 0.05),
        0 0 20px rgba(255, 0, 102, 0.2);
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .admin-grid {
        grid-template-columns: 1fr;
    }

    .live-prices-card {
        position: static;
        order: -1;
    }

    .glass-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    .admin-header h1 {
        font-size: 2.5rem;
    }

    .glass-card {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .form-row,
    .direction-buttons,
    .confidence-levels {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .admin-grid {
        margin-top: 60px;
    }
}

/* ===== Loading Animation ===== */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border-top-color: var(--electric-blue);
    animation: spin 1s ease-in-out infinite;
}

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

/* ===== Custom Scrollbar ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* ===== Plan Management Styles ===== */
.plan-management-section {
    margin-top: 30px;
}

.add-plan-btn {
    background: linear-gradient(135deg, var(--success-green), #34a853);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.add-plan-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 168, 83, 0.3);
}

.plan-editor {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
}

.plan-editor h3 {
    color: var(--text-primary);
    margin-bottom: 20px;
    font-size: 18px;
}

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

.plan-editor label {
    display: block;
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 500;
}

.plan-editor input[type="text"],
.plan-editor input[type="number"],
.plan-editor textarea,
.plan-editor select {
    width: 100%;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 14px;
    transition: all 0.3s ease;
}

.plan-editor input:focus,
.plan-editor textarea:focus,
.plan-editor select:focus {
    outline: none;
    border-color: var(--accent-blue);
    background: rgba(255, 255, 255, 0.08);
}

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

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.form-actions .btn-primary,
.form-actions .btn-secondary {
    padding: 10px 25px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-actions .btn-primary {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    color: white;
}

.form-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.form-actions button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Admin table styles for plans */
.admin-table {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    overflow: hidden;
}

.admin-table thead {
    background: rgba(255, 255, 255, 0.05);
}

.admin-table th {
    padding: 15px;
    text-align: left;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-table td {
    padding: 15px;
    color: var(--text-primary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.admin-table .badge {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.admin-table .badge-signals {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}

.admin-table .badge-course {
    background: rgba(168, 85, 247, 0.2);
    color: #a855f7;
}

.btn-small {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 2px;
}

.btn-edit {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}

.btn-stats {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
}

.btn-delete {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.btn-small:hover {
    transform: translateY(-1px);
    filter: brightness(1.2);
}

/* Small button variant */
.btn-sm {
    padding: 4px 8px;
    font-size: 12px;
    border-radius: 4px;
}

/* Danger button variant */
.btn-danger {
    background: linear-gradient(135deg, #ff3366, #ff0044);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-danger:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 51, 102, 0.5);
}

.btn-danger.btn-sm {
    padding: 4px 8px;
    font-size: 12px;
}

/* ===== Course Management Styles ===== */
.course-management-section {
    margin-top: 30px;
}

.add-course-btn {
    background: linear-gradient(135deg, var(--accent-purple), #8b5cf6);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.add-course-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}