/* ==========================
   Global Styles
========================== */
body {
    font-family: "Noto Sans Gujarati", "Noto Sans", sans-serif;
    background-color: #f8f9fa;
}

/* Card Styling */
.card {
    border-radius: 10px;
}

.card-header {
    font-weight: 600;
    font-size: 1.2rem;
}

/* Buttons */
.btn-primary {
    background-color: #0d6efd;
    border: none;
    font-weight: 500;
}
.btn-primary:hover {
    background-color: #0b5ed7;
}

/* Sidebar */
.sidebar {
    height: 100vh;
    box-shadow: inset -1px 0 0 rgba(0, 0, 0, 0.1);
}
.sidebar .nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
}
.sidebar .nav-link:hover {
    background-color: #e9ecef;
    color: #0d6efd;
}
.sidebar .nav-link.active {
    background-color: #0d6efd;
    color: #fff !important;
}

/* Navbar */
.navbar-brand {
    font-size: 1.3rem;
    font-weight: 600;
}

/* Footer */
.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
}

/* Dashboard Heading */
.page-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0d6efd;
    margin-bottom: 20px;
}

/* Table */
.table thead {
    background-color: #0d6efd;
    color: #fff;
}
.table td, .table th {
    vertical-align: middle;
}

/* Form Labels */
.form-label {
    font-weight: 500;
}

/* Search Box */
.search-box {
    max-width: 400px;
    margin-bottom: 15px;
}

/* Print Sheet */
.print-sheet {
    border: 2px solid #000;
    padding: 20px;
    background: #fff;
    font-size: 1rem;
}
.print-sheet h5 {
    border-bottom: 1px solid #000;
    padding-bottom: 5px;
    margin-bottom: 15px;
    text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .sidebar {
        height: auto;
    }
    .page-title {
        text-align: center;
    }
}
