
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: "Mtn";
}

body {
  font-family: "Mtn";
  background-color: #f2f4f6;
}

@font-face {
  font-family: "Mtn";
  src: url("./mtn.ttf") format("truetype");
  font-weight: 400;
}





.logo {
  height: 150px;
  width: 250px;
  background-image: url(../images/logo.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}










.forms_groups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.forms {
  display: flex;
  flex-direction: column;
  margin-top: 25px;
}

.forms input,
.forms select,
.forms textarea {
  width: 100%;
  border: 1.5px solid #ddd;
  padding-left: 3%;
}

.forms input,
.forms select {
  height: 45px;
}

.forms textarea {
  height: 300px;
  padding-top: 20px;
}

.forms input:focus,
.forms select:focus,
.forms textarea:focus {
  outline: none;
}

.forms button {
  height: 45px;
  width: 100%;
  border: none;
  background-color: #FCCF01;
  color: #010101;
}




table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
}

table,
th,
td {
  border: 1px solid #ccc;
}

th,
td {
  padding: 10px;
  text-align: left;
}

th {
  background-color: #FCCF01;
  color: #010101;
}


/* sidebar */
.sidebar {
  height: 100vh;
  background-color: #fff;
  width: 350px;
  padding: 0 20px;
  position: fixed;
  left: 0;
  top: 0;
  transform: translateX(-100%);
  transition: transform 0.8s ease-in-out;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    z-index: 850;
}

.sidebar.hidden {
  transform: translateX(0);
}

.links {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  margin-top: 35px;
  overflow-y: auto;
  height: 50vh;
  scrollbar-width: thin;
  scrollbar-color: #FCCF01 #ecf0f1;
}

/* For Chrome, Edge, and Safari */
.links::-webkit-scrollbar {
  width: 8px;
}

.links::-webkit-scrollbar-track {
  background: #ecf0f1; /* Light gray track */
  border-radius: 10px; /* Rounded track */
}

.links::-webkit-scrollbar-thumb {
  background-color:  #FCCF01; /* Green thumb */
  border-radius: 10px; /* Rounded thumb */
  border: 2px solid #ecf0f1; /* Adds padding effect */
}

.links::-webkit-scrollbar-thumb:hover {
  background-color:  #FCCF01; /* Darker green on hover */
}

.links a {
  padding-block: 10px;
  color: #000;
}
.sidebar h4{
  background-color: #FCCF01;
  padding: 5px;
  color: #010101;
}
.sidebar h4 i{
  color: #010101;
}
.dash {
  border-top: 2px dashed  #010101;
}

/* .sidebar a{
  color: #000;
} */

.toggle_btn {
  position: fixed;
  top: 0px;
  left: 0;
  font-size: 20px;
  cursor: pointer;
  background-color:  #FCCF01;
  color: #010101;
  height: 28px;
  width: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 851;
  transition: left 0.7s ease-in-out;
}
.toggle_btn.collapsed {
  left: 350px;
}


.logout {
  border: 2px solid  #FCCF01;
  padding: 10px 30px;
  border-radius: 50px;
  background-color:  #FCCF01;
  color: #010101;
  position: absolute;
  bottom: 30px;
}

.links i {
  color:  #FCCF01;
  padding-right: 3%;
}

.links a.active {
  color:  #FCCF01;
}


/* Media Queries */
@media only screen and (max-width: 1110px) {

  .forms_groups {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .headline h1{
    font-size: 40px;
  }
}

.copyright{
  background-color: #010101;
margin-top: 50px;
color: #000;
}

@media only screen and (max-width: 1010px) {
  #mobile-button {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    border: none;
    font-size: 22px;
    cursor: pointer;
  }

  #mobile-button i {
    color: #000 !important;
    font-weight: 700;
  }

  .nav_links {
    display: none;
  }

  .mobile_links {
    position: fixed;
    top: 160px;
    width: 0%;
    right: 0;
    background-color: #010101;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    padding: 15px 3%;
    transform: translateX(100%);
    transition: transform 0.8s ease-in-out;
    z-index: 999;
  }

  .mobile_links.active {
    transform: translateX(0);
    width: 100%;
  }

  .mobile_links a {
    padding-top: 15px;
    color: #000;
  }

  .dropdown {
    display: flex;
    gap: 20px;
  }
  .dropdown a {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 10px;
  }
}

@media only screen and (max-width: 710px) {
  .footer_all {
    display: grid;
    grid-template-columns: 1fr;
  }
}
