/* Main styles */
body {
    padding-top: 56px;
}

/* Sidebar styles */
.offcanvas {
    width: 250px;
}

/* Dashboard cards */
.card-stat {
    transition: transform 0.2s;
}
.card-stat:hover {
    transform: translateY(-5px);
}

/* Form styles */
.form-section {
    background: #f8f9fa;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 20px;
}

/* Table actions */
.table-actions {
    white-space: nowrap;
    width: 1%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .table-responsive {
        overflow-x: auto;
    }
}