
/* Start of Login Page Css */

/* Apply Montserrat globally */
body {
  font-family: 'Montserrat', sans-serif !important;
}

/* Apply Poppins to paragraphs, spans, tables, links, and buttons */
p, span, table, th, td, a, button {
  font-family: 'Poppins', sans-serif !important;
}

/* Ensure headings (h1 to h6) use Montserrat */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif !important;
}

/* Font weights */
h1 {
  font-weight: 700 !important;
}

p {
  font-weight: 600 !important;
}

span {
  font-weight: 600 !important;
}

table, th, td, a, button {
  font-weight: 400 !important; /* Adjust as needed */
}


span.badge.badge-secondary.fixed-width-badge {
  /* background-color: antiquewhite; */
  background-color: dimgrey;
}


.LoginTitle {
  margin-bottom: .5rem;
  font-family: nunito sans;
  font-weight: 700;
  font-size: 34px;
}

.nav-heading {
  padding-left: 15px;
  font-size: 18px !important;
  font-weight: bold;
  font-weight: 600 !important;
  color: #4f878f;
  margin-top: 15px;
  margin-bottom: 5px;
  text-transform: none;
  font-family: 'Poppins' !important;
}


.LoginHeader {
  padding: .5rem 1rem;
  margin-bottom: 0;
  background-color: rgba(255, 255, 255, 0.03);
  border-bottom: none !important;
}

.logologin {
  padding-bottom: 60px;
  width: 466px !important;
}

.logotext {

  height: 72px;
  font-size: 20px;
  border-radius: 5px !important;
  border: 2px solid #ccc !important;
  padding: 30px 40px;
  color: #2e2c38;
}






.LoginFooter {
  padding: .5rem 1rem;
  background-color: rgba(0, 0, 0, .03);
  border-top: 1px solid rgba(0, 0, 0, .125);
  display: none !important;
}

.LoginButton {
  color: #fff;
  background-color: #212529;
  border-color: #212529;
  width: 100%;
  font-size: 24px;
  padding: 15px 40px;
}



a {
  color: #4F878F;
  text-decoration: underline;
  text-align: left !important;
  /* font-family: poppins; */
}

.LoginBody {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: none !important;
  box-shadow: none !important;
 
}




.signupboxes {
  height: 72px;
  font-size: 20px;
  border-radius: 5px !important;
  border: 2px solid #ccc !important;

  color: #000000 !important;
}


.badge{

  font-size: 16px;
    letter-spacing: 1px;
  color: white;
}

.fixed-width-badge {
  display: inline-block; /* Ensure the badge is treated as a block element */
  width: 150px; /* Set a fixed width for the badges */

  text-align: center; /* Center-align the text inside the badge */
  white-space: nowrap; /* Prevent text from wrapping */
}

tbody, td, tfoot, th, thead, tr {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  font-size: 16px !important;
  font-weight: 500 !important;
  /* font-family: poppins !important; */
}

/* Styling placeholder text */
.signupboxes::placeholder {
  color: #000000; /* Change this to your desired placeholder color */
  font-size: 20px; /* Optional: Ensure placeholder text size matches */
}

.signupboxes:focus {
  outline: none; /* Removes the default outline */
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.2); /* Custom shadow effect */
  border: 2px solid #000000; /* Optional: Custom border on focus */
}


.form-control {
  /* Example styles for .form-control if needed */
  width: 100%;
}

/* End of Login Page Css */


/* Start of Admin Dashboard Css */

.tmr {
  color: #4f878f;
  font-weight: 600;
  font-family: Montserrat;
}

.tmrn {
  color: #000000;
  font-weight: 600;
  /* font-family: Poppins; */
}

.dashboard-heading {
  font-family: Montserrat;
  font-weight: 600;
  }


.meetingtable {
    text-align: center;
    padding-bottom: 20px;
    font-family: Montserrat;
    font-weight: 600;
}

/* End of Admin Dashboard Css */


.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: .5rem;
  padding-bottom: .5rem;
  height: 70px;
  background: #6fc2b4;
}



.dropdown-toggle::after {
display: inline-block;
margin-left: .255em;
vertical-align: .255em;
content: "";
border-top: .3em solid;
border-right: .3em solid transparent;
border-bottom: 0;
border-left: .3em solid transparent;
display:none;
}

/* Active nav-link */
.nav-link.active {
background-color: #4f878f !important;
color: #fff;
}

.nav-link:hover {
  background-color: black;
  color: #fff !important;  /* Text color changes to white on hover */
}

.nav-link {
  display: block;
  padding: .5rem 1rem;
  color: #212529 !important;
  text-decoration: none;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
  font-size: 18px !important;
  font-family: Montserrat;
  font-weight: 500;
}

/* Dropdown toggle to prevent the need for a click */
.nav-item.dropdown-toggle::after {
display: none;
}

/* Dropdown menu styling */
.dropdown-menu {
display: none; /* Hidden by default */
padding: 0;
border: none;
box-shadow: none;
}

.dropdown-item {
display: block;
width: 100%;
padding: .25rem 1rem;
clear: both;
font-weight: 500;
color: #212529;
text-align: inherit;
text-decoration: none;
white-space: nowrap;
background-color: transparent;
border: 0;
font-family: Montserrat;
}

.dropdown-menu.show {
display: block; /* Show when 'show' class is added */
position: static;
float: none;
width: 100%;
margin-top: 0;
padding-top: 0;
}



/* Section heading styling */
.nav-item h6 {
margin-top: 20px;
/* font-family:poppins; */
font-size: 20px;
font-weight: bold;
}

.text-muted {
  color: black !important;
}



.plus-icon {
float: right;
font-weight: bold;
transition: transform 0.3s ease;
}

.dropdown-toggle[aria-expanded="true"] .plus-icon {
transform: rotate(45deg);
}









.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, .125);
  border-radius: 10px;
  box-shadow: 0 2px 6px #dadafda6, 0 2px 6px #ceceee8a;
}

.sidebar {
height: 100vh;
position: fixed;
top: 0;
left: 0;
width: 350px;
background-color: #f8f9fa !important;
padding-top: 20px;
transition: all 0.3s;
overflow-y: auto;
}

.sidebar.collapsed {
width: 60px;
}

.sidebar .logo {
text-align: center;
padding: 15px;
}

.sidebar .logo img {
width: 250px;
max-width: 100%;
}

.sidebar .user-info {
padding: 15px;
text-align: center;
}

.sidebar .user-info img {
border-radius: 20%;
width: 150px;
height: 200px;
margin-bottom: 20px;
object-fit: cover;
}

.user-info {
margin: 10px 0 5px;
font-size: 16px;
font-weight: bold;
font-family: Montserrat;
}

h5.usernameheading {
  font-size: 20px;
  font-weight: bold;
}

.sidebar .user-info p {
font-size: 16px;
color: #000000;
font-family: Montserrat;
font-weight:500;

}

.sidebar .nav-item .nav-link.active {
background-color: #0056b3;
color: white !important;
}

.user-status {
display: flex;
align-items: center;
justify-content: center;
margin-top: 5px;
}

.user-status .badge {
width: 5px;
height: 15px;
border-radius: 46%;
display: inline-block;
margin-right: 8px;
margin-top: -14px !important;
font-size: 18px !important;
}

.user-status .badge.online {
background-color: #28a745;
}

.user-status .badge.offline {
background-color: #dc3545;
}

.sidebar .nav-link {
padding: 10px 15px;
font-size: 18px;
display: flex;
align-items: center;
}

.sidebar .nav-link i {
margin-right: 15px;
}

.sidebar .nav-link.active {
background-color: #007bff;
color: #fff;
}

.sidebar .nav-item .nav-link.active {
background-color: #0056b3;
}

.sidebar .nav-item .nav-link .nav-link {
display: none;
}

.sidebar .nav-item .nav-link.active .nav-link {
display: block;
}

.content {
margin-left: 350px;
padding: 20px;
transition: margin-left 0.3s;
}

.content.expanded {
margin-left: 60px;
}

.dropdown-item {
display: flex;
align-items: center;
padding: 0.75rem 1.25rem; /* Consistent padding */
}

.dropdown-item i {
margin-right: 0.75rem; /* Consistent space between icon and text */
font-size: 1.2rem; /* Consistent icon size */
}

.dropdown-item span {
font-size: 1rem; /* Consistent text size */
}

/* Responsive adjustments */
@media (max-width: 576px) {
.dropdown-item {
font-size: 0.9rem; /* Adjust text size for smaller screens */
}

.dropdown-item i {
font-size: 1rem; /* Adjust icon size for smaller screens */
}
}


.logout-container {
text-align: center; /* Center the button horizontally */
padding: 10px 0; /* Optional: add vertical padding if needed */
}

/* Styling for the logout button */
.btn {
display: inline-block; /* Ensure the button is centered */
}


@media (max-width: 1200px) {
.sidebar {
  width: 300px;
}

.content {
  margin-left: 300px;
}
}

@media (max-width: 992px) {
.sidebar {
  width: 100%;
  height: auto;
  position: relative;
  display: none;
}

.sidebar.collapsed {
  width: 60px;
}

.sidebar.active {
  display: block;
}

.content {
  margin-left: 0;
}
}

@media (max-width: 576px) {
.sidebar .nav-link {
  font-size: 16px;
}

.sidebar .user-info h5 {
  font-size: 18px;
}

.sidebar .user-info p {
  font-size: 14px;
}
}

h5.card-text.badge.bg-success.statussize {
  font-size: 18px;
  }

  .bg-success {
    background-color: #28a745 !important;
}

.nav-item .dropdown-menu.show {
  display: block; /* Show when 'show' class is present */
}


.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
  font-family: Montserrat;
}
  

.meeting-fieldset { margin-bottom: 1em; }




.dataTables_filter input {
  /* font-family: Poppins !important; */
  font-size: 18px !important;
  font-weight: 500 !important;
}

label {
  display: inline-block;
  /* font-family: Poppins; */
}

.btn {
  font-family: Montserrat;
  font-weight: 500 !important;
}

.nav-link.active {
  background-color: #4f878f !important;
  color: #fff !important;
}

.disabled-link {
  pointer-events: none;
  color: gray; /* Optional: change color to indicate it's disabled */
  text-decoration: none;
}


/* Custom scrollbar styling for Webkit browsers (Chrome, Safari, Edge) */
.sidebar::-webkit-scrollbar {
  width: 8px;
}

.sidebar::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 10px; /* Rounded scrollbar handle */
}

.sidebar::-webkit-scrollbar-thumb:hover {
  background-color: #555; /* Darker on hover */
}

/* Hides the default scrollbar arrows */
.sidebar::-webkit-scrollbar-button {
  display: none; /* Remove the arrows (buttons) */
}

/* Firefox scrollbar */
.sidebar {
  scrollbar-width: thin;
  scrollbar-color: #888 #f1f1f1;
}



/* Custom scrollbar styling for Webkit browsers (Chrome, Safari, Edge) */
.sidebar::-webkit-scrollbar {
  width: 8px;
}

.sidebar::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 10px; /* Rounded scrollbar handle */
}

.sidebar::-webkit-scrollbar-thumb:hover {
  background-color: #555; /* Darker on hover */
}

/* Hides the default scrollbar arrows */
.sidebar::-webkit-scrollbar-button {
  display: none; /* Remove the arrows (buttons) */
}

/* Firefox scrollbar */
.sidebar {
  scrollbar-width: thin;
  scrollbar-color: #888 #f1f1f1;
}


.nav-tabs {
  border-bottom: 1px solid #dee2e6;
  /* PADDING-BOTTOM: 20PX; */
  MARGIN-BOTTOM: 25PX;
}

.dataTables_wrapper .dataTables_length, .dataTables_wrapper .dataTables_filter, .dataTables_wrapper .dataTables_info, .dataTables_wrapper .dataTables_processing, .dataTables_wrapper .dataTables_paginate {
  color: inherit;
  padding-bottom: 10;
  padding-top: 20px;
}


span.badge.badge-warning.fixed-width-badge {
  background-color: #ffc107;
  COLOR: BLACK;
}

a.forgotmypass {
  font-size: 18px;
  font-weight: 700 !important;
  text-decoration: none;
}