@font-face {
    font-family: "Noto Sans Devanagari";
    src: url("../fonts/NotoSansDevanagari-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}
body {
    font-family: "Noto Sans Devanagari", sans-serif;
    font-style: normal;
}

@media (max-width: 991.98px) {

    #collapsibleNavbar {
        text-align: center;
    }

    #collapsibleNavbar .navbar-nav {
        width: 100%;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;   /* 🔥 main fix */
    }

    #collapsibleNavbar .nav-item {
        width: 100%;
    }

    #collapsibleNavbar .nav-link {
        display: block;
        width: 100%;
        text-align: center;
    }
}

.b-bg-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 66vh;   /* responsive height */
}


#b-header {
    padding: 10px 0;
}

.b-emblem-image {
    width: 85px;
    height: auto;
}

.b-appname {
    font-size: 26px;
    color: #0b3d3f;
    line-height: 1.3;
}

.b-appfullname {
    font-size: 15px;
    color: #555;
}

/* ---------- NAVBAR ---------- */

.globalnav-bg, .footer-bs
{
    background: #226268 !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 500;
    padding: 10px 18px;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover {
    background: rgba(255,255,255,0.15);
    border-radius: 4px;
}

/* Login buttons */
.b-loginbut {
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 4px;
    margin-left: 10px;
}

/* ---------- MOBILE ---------- */

@media (max-width: 991px) {

    .navbar-nav {
        align-items: center;
    }

    .navbar-nav .nav-item {
        width: 100%;
    }

    .b-loginbut {
        margin: 6px 0;
        width: 80%;
    }

    .b-appname {
        font-size: 20px;
    }
}

.form-control {
    height: 44px;
}

/* ===== LOGIN BUTTON ===== */

.btn.b-btn {
    background-color: #5fa7b0;   /* normal color (like your image) */
    border: 1px solid #5fa7b0;
    color: #0b1f22;
    font-size: 16px;
    padding: 10px 34px;
    border-radius: 6px;
}

/* ✅ DARKER HOVER */
.btn.b-btn:hover {
    background-color: #3f8d97 !important;
    border-color: #3f8d97 !important;
    color: #ffffff !important;
}

/* Click */
.btn.b-btn:active {
    background-color: #2f6f77;
    transform: translateY(0);
    box-shadow: none;
}

.dashboard-bgcolor {
	background-color: #226268 !important;
}

.b-db-color {
    color: #fff !important;
}

.dropdown-item {
	color: #fff;
}

.table-container {
	border: 1px solid #ccc;
	border-radius: 8px;
	padding: 16px;
	margin: 20px auto;
	max-width: 80%;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	background-color: #fff; 
}

.styled-table {
	width: 100%;
	border-collapse: collapse; 
  }
  
  .styled-table th,
  .styled-table td {
	border: 1px solid #ddd;
	padding: 10px; 
	text-align: left; 
  }
  
  .styled-table th {
	background-color: #f4f4f4;
	font-weight: bold;
  }
  
  .styled-table tr:nth-child(even) {
	background-color: #f9f9f9;
  }
  
  .styled-table tr:hover {
	background-color: #f1f1f1;
  }
