/* Calendly Campaign System - Custom Styles */

body {
    background-color: #1a1a2e;
    color: #e0e0e0;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* Navbar */
.navbar {
    background: #16213e !important;
}

.navbar-brand {
    font-size: 1.2rem;
    color: #4fc3f7 !important;
}

/* Cards */
.card {
    border-radius: 10px;
    transition: transform 0.1s ease;
}

.card-header {
    background: rgba(255,255,255,0.03);
    font-weight: 600;
}

/* Tables */
.table-dark {
    --bs-table-bg: transparent;
}

.table-dark thead th {
    background: rgba(255,255,255,0.05);
    border-bottom: 2px solid #333;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #999;
}

.table-dark tbody tr:hover {
    background: rgba(79, 195, 247, 0.05);
}

/* Progress bars */
.progress {
    background-color: #2a2a3e;
    border-radius: 8px;
}

.progress-bar {
    font-size: 0.75rem;
    font-weight: 600;
}

/* Badges */
.badge {
    font-weight: 500;
    padding: 0.35em 0.65em;
}

/* Code elements */
code {
    color: #4fc3f7;
    background: rgba(79, 195, 247, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.85em;
}

/* Live indicator */
#live-indicator {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #1a1a2e;
}
::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: #666;
}

/* Form controls dark mode */
.form-control, .form-select {
    background-color: #16213e;
    border-color: #333;
    color: #e0e0e0;
}
.form-control:focus, .form-select:focus {
    background-color: #1a2744;
    border-color: #4fc3f7;
    color: #e0e0e0;
    box-shadow: 0 0 0 0.2rem rgba(79, 195, 247, 0.15);
}

/* Login page */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Campaign status colors */
.border-success { border-color: #28a745 !important; }
.border-danger  { border-color: #dc3545 !important; }
.border-warning { border-color: #ffc107 !important; }
.border-info    { border-color: #17a2b8 !important; }

/* Responsive */
@media (max-width: 768px) {
    .table-responsive-wrap {
        overflow-x: auto;
    }
    .card-body {
        padding: 0.75rem;
    }
}
