/* ===================================
   APP LAYOUT - AUTHENTICATED PAGES
   =================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* HTML & Body */
html {
    font-size: 13px;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Sidebar Items */
.sidebar-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.sidebar-item.active {
    background-color: rgba(255, 255, 255, 0.15);
    border-left: 3px solid white;
}

/* Card Styling */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Table Rows */
.table-row:hover {
    background-color: #f9fafb;
}
