/* styles/style.css */
body {
    background-color: #f4f6f9;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

/* Navbar */
.navbar {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Login */
.login-container {
    max-width: 400px;
    margin: 80px auto;
    padding: 40px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.login-container h3 {
    font-weight: 700;
    color: #2c3e50;
}

/* Dashboard */
.dashboard-container {
    margin-top: 40px;
    margin-bottom: 40px;
}

/* Cards */
.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
}

.card-header {
    background-color: white;
    border-bottom: 1px solid #f0f0f0;
    font-weight: 600;
    padding: 15px 20px;
}

/* Badges */
.status-badge {
    font-size: 0.85em;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Filter Buttons */
.filter-btn-group .btn {
    border-radius: 20px;
    margin: 0 2px;
    font-size: 0.9rem;
    padding: 6px 16px;
}

.filter-btn-group .btn.active {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Table */
.table-responsive {
    background: white;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.table {
    margin-bottom: 0;
}

.table thead th {
    background-color: #f8f9fa;
    border-bottom: 2px solid #e9ecef;
    color: #6c757d;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    padding: 15px;
}

.table tbody td {
    padding: 15px;
    vertical-align: middle;
}

/* Status Colors */
.bg-todo {
    background-color: #e9ecef;
    color: #495057;
}

.bg-active {
    background-color: #cff4fc;
    color: #055160;
}

.bg-danger-custom {
    background-color: #fff3cd;
    color: #664d03;
}

/* Warning style for Danger */
.bg-failed {
    background-color: #f8d7da;
    color: #842029;
}

.bg-completed {
    background-color: #d1e7dd;
    color: #0f5132;
}

.bg-stalled {
    background-color: #e2e3e5;
    color: #41464b;
}

/* Buttons */
.btn-primary {
    background-color: #3498db;
    border-color: #3498db;
}

.btn-primary:hover {
    background-color: #2980b9;
    border-color: #2980b9;
}

.btn-success {
    background-color: #2ecc71;
    border-color: #2ecc71;
}

.btn-success:hover {
    background-color: #27ae60;
    border-color: #27ae60;
}