/* Main Styles */
body {
    font-family: 'SolaimanLipi', Arial, sans-serif;
    background-color: #f8f9fa;
}

/* Dashboard Cards */
.card {
    transition: transform 0.3s;
    margin-bottom: 20px;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

/* Forms */
.form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Tables */
.table-responsive {
    overflow-x: auto;
}

.table th {
    background-color: #0d6efd;
    color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .card {
        margin-bottom: 15px;
    }
    
    .navbar-nav {
        margin-top: 10px;
    }
}

/* Print styles */
@media print {
    .no-print, .navbar, .footer {
        display: none !important;
    }
    
    body {
        padding: 0;
        background: none;
    }
    
    .table {
        page-break-inside: avoid;
    }
}

/* Bangla font */
@font-face {
    font-family: 'SolaimanLipi';
    src: url('../fonts/SolaimanLipi.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.bangla {
    font-family: 'SolaimanLipi', Arial, sans-serif;
}