/* ========================================
   TAILWIND CSS + CUSTOM STYLES
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Tiro+Bangla:ital@0;1&display=swap');

/* Tailwind compatibility - Custom properties */
:root {
    --font-bangla: 'Tiro Bangla', 'Segoe UI', sans-serif;
}

/* Custom Tailwind Utilities */
body {
    font-family: var(--font-bangla);
    padding-top: 5rem;
}

/* ========================================
   LAYOUT
   ======================================== */

.main-content {
    margin: 80px 0 40px;
    min-height: calc(100vh - 200px);
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    color: var(--color-primary);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: var(--space-md);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

.profile-heading {
    color: var(--color-primary);
    font-size: 1.5rem;
/* ========================================
   TYPOGRAPHY
   ======================================== */

.profile-heading {
    font-family: var(--font-bangla);
}   background-color: var(--bg-primary);
    transition: all 0.2s ease;
    font-family: var(--font-primary);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.05);
/* Typography overrides */
.profile-heading {
    font-family: var(--font-bangla);
}
.btn i {
    font-size: 0.9em;
}

/* ========================================
   TABLES
   ======================================== */

.table-responsive {
    margin-top: var(--space-lg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

table {
    width: 100%;
    border-collapse: collapse;
/* ========================================
   FORMS
   ======================================== */

.form-control,
.form-select,
.form-label {
    font-family: var(--font-bangla);
}

.btn {
    font-family: var(--font-bangla);
}

.btn i {
    font-size: 0.9em;
}   text-align: right;
/* Form elements with Bangla font */
.form-control,
.form-select,
.form-label {
    font-family: var(--font-bangla);
}

.photo-container {
    text-align: center;
    padding: var(--space-lg);
}

.photo-container img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    border: 3px solid var(--border-light);
    margin-bottom: var(--space-md);
/* ========================================
   TABLES
   ======================================== */

.table th,
.table td {
    font-family: var(--font-bangla);
}

.print-btn:hover {
    background: var(--color-accent);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.footer {
    background-color: var(--bg-tertiary);
    padding: var(--space-xl) 0;
    text-align: center;
    border-top: 1px solid var(--border-light);
    margin-top: var(--space-2xl);
}
/* Table styles */
.table th,
.table td {
    font-family: var(--font-bangla);
}   
    .photo-container img {
        width: 80px;
        height: 80px;
    }
    
    body {
        background: white;
    }
/* ========================================
   PROFILE & PHOTOS
   ======================================== */

.photo-container img {
    width: 120px;
    height: 120px;
    object-fit: cover;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.action-buttons form {
    display: inline;
}

/* ========================================
   PRINT & A4 STYLES
   ======================================== */

.a4-container {
    background: white;
    width: 210mm;
    margin: 1.5rem auto;
    padding: 20mm;
}@media print {
    .navbar, .footer, .print-btn, .status-bar, .btn {
        display: none !important;
    }
    .main-content {
        margin: 0;
    }
    .a4-container {
        width: 100%;
        margin: 0;
        padding: 0;
        box-shadow: none;
    }
    .photo-container img {
        width: 80px;
        height: 80px;
    }
    body {
        background: white;
    }
}