/* File: public/assets/css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #4e73df;
    --success-color: #1cc88a;
    --info-color: #36b9cc;
    --warning-color: #f6c23e;
    --danger-color: #e74a3b;
    --dark-bg: #2c3e50; 
    --light-bg: #f4f6f9; 
    --card-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--light-bg);
    color: #444;
    overflow-x: hidden;
}

/* Thanh cuộn hiện đại */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #c1c1c1; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #a8a8a8; }

/* Nút bấm chung */
.btn-custom {
    border-radius: 10px;
    padding: 10px 24px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
}
.btn-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

/* Bảng chung */
.table-responsive { border-radius: 12px; }
.table thead th { 
    background-color: #f8f9fc; 
    color: #858796; 
    text-transform: uppercase; 
    font-size: 0.8rem; 
    font-weight: 700; 
    padding: 18px 15px; 
    border-bottom: 2px solid #e3e6f0; 
}
.table tbody td { padding: 15px; border-bottom: 1px solid #e3e6f0; }