/* HomeHub - Custom Styles */

:root {
    --home-primary: #4e73df;
    --home-success: #1cc88a;
    --home-warning: #f6c23e;
    --home-danger: #e74a36;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 1.5rem;
    flex: 1;
}

/* Card hover effect */
.card {
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Stat cards */
.stat-card {
    border-left: 4px solid var(--home-primary);
}

.stat-card.success {
    border-left-color: var(--home-success);
}

.stat-card.warning {
    border-left-color: var(--home-warning);
}

.stat-card.danger {
    border-left-color: var(--home-danger);
}

/* Empty state */
.empty-state {
    text-align: center;
    padding: 3rem 1rem;
}

.empty-state i {
    font-size: 4rem;
    color: #ddd;
}

.empty-state h4 {
    color: #666;
}

/* Badge styles */
.badge-low {
    background-color: #6c757d;
}

.badge-medium {
    background-color: #0d6efd;
}

.badge-high {
    background-color: #fd7e14;
}

.badge-urgent {
    background-color: #dc3545;
}

/* Form styling */
.form-label {
    font-weight: 500;
    color: #495057;
}

/* Table styling */
.table-hover tbody tr:hover {
    background-color: rgba(78, 115, 223, 0.05);
}

/* QR Code needs | await confirmation from user for any previous tool uses. I confirm that I have read this message and I will make neither a positive nor a negative reference to any previous tool use Os."""
    border-radius: 0.5rem;
}

/* Quick action buttons */
.quick-action {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .stat-card {
        margin-bottom: 1rem;
    }
}