body {
    font-family: 'Inter', sans-serif;
}

.card {
    background: #ffffff;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 10px 30px -10px rgba(59, 130, 246, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -15px rgba(59, 130, 246, 0.4);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 10px 20px -15px rgba(37, 99, 235, 0.5);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -15px rgba(37, 99, 235, 0.6);
}

.grid-layout {
    display: grid;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .grid-layout {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 1rem;
    }

    .card {
        padding: 1.25rem;
    }

    .btn-primary {
        width: 100%;
    }
}

.status-label {
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.status-active {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.status-pending {
    background: rgba(234, 179, 8, 0.1);
    color: #ca8a04;
}

.status-paused {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
}

.status-completed {
    background: rgba(107, 114, 128, 0.1);
    color: #374151;
}

.chart-container {
    position: relative;
    width: 100%;
    height: 320px;
}

@media (max-width: 640px) {
    .chart-container {
        height: 260px;
    }
}

.table-responsive {
    overflow-x: auto;
    border-radius: 1rem;
}

.table-style {
    width: 100%;
    min-width: 500px;
    border-collapse: separate;
    border-spacing: 0;
}

.table-style th,
.table-style td {
    padding: 0.75rem 1rem;
    text-align: left;
}

.table-style thead {
    background: #eff6ff;
    color: #1d4ed8;
}

.table-style tbody tr {
    border-bottom: 1px solid #e5e7eb;
}

.table-style tbody tr:hover {
    background: rgba(59, 130, 246, 0.05);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-weight: 600;
}

.badge-success {
    background: rgba(34, 197, 94, 0.1);
    color: #15803d;
}

.badge-warning {
    background: rgba(234, 179, 8, 0.1);
    color: #b45309;
}

.badge-info {
    background: rgba(99, 102, 241, 0.1);
    color: #4338ca;
}

.badge-danger {
    background: rgba(239, 68, 68, 0.1);
    color: #b91c1c;
}
