/* ShowDox Admin Interface Styles */

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.gradient-bg {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #334155 50%, #475569 75%, #64748b 100%);
}

.showdox-gradient {
    background: linear-gradient(135deg, #059669 0%, #0d9488 50%, #0891b2 100%);
}

.glass-effect {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.transition-all {
    transition: all 0.3s ease;
}

.input-focus:focus {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.showdox-btn {
    background: linear-gradient(135deg, #059669 0%, #0d9488 100%);
}

.showdox-btn:hover {
    background: linear-gradient(135deg, #047857 0%, #0f766e 100%);
}

.sidebar-gradient {
    background: linear-gradient(180deg, #1e293b 0%, #334155 100%);
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    overflow-y: auto;
    z-index: 10;
}

.stats-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.campaign-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.campaign-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.modal-content {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(51, 65, 85, 0.95) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.activity-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.bar-chart-container {
    display: flex;
    align-items: end;
    height: 160px;
    gap: 8px;
    padding: 16px;
}

.bar-chart-bar {
    flex: 1;
    min-height: 4px;
    border-radius: 4px 4px 0 0;
    transition: all 0.3s ease;
}

.bar-chart-bar:hover {
    opacity: 0.8;
}

.main-content {
    margin-left: 256px;
} 