@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');


body {
  font-family: 'Poppins', Arial, sans-serif;
  background-color:#FFFEFE;
  font-weight:400!important;
  color: #7D7373;
  font-size: 14px;
  
  
}
a{
  text-decoration: none;
}
nav{
  height: 10vh!important;
  background: #FFFEFE !important;
  
}

.round-btn {
  width: 35px;
  height: 35px;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: #FEFEFE;
  box-shadow: 1px 1px 2px 0px rgba(255, 255, 255, 0.30) inset, -1px -1px 2px 0px rgba(229, 229, 229, 0.50) inset;
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 15px;
  transition: all 0.3s ease;
}

.round-btn:hover {
  background-color:rgb(244, 240, 240);
  transform: scale(1.05);
  box-shadow: 1px 1px 2px 0px rgba(239, 239, 239, 0.30) inset, -1px -1px 2px 0px rgba(195, 195, 195, 0.50) inset, -5px 5px 10px 0px rgba(195, 195, 195, 0.20), 5px -5px 10px 0px rgba(195, 195, 195, 0.20), -5px -5px 10px 0px rgba(239, 239, 239, 0.90), 5px 5px 13px 0px rgba(195, 195, 195, 0.90);
}

.logo-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.logo-img {
  transition: all 0.3s ease;
}

.logo-img:hover {
  opacity: 0.9;
}

.main_card{
  /* height: 100vh; */
  margin: 1rem;
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 1px 1px 2px 0px rgba(239, 239, 239, 0.30) inset, -1px -1px 2px 0px rgba(195, 195, 195, 0.50) inset, -5px 5px 10px 0px rgba(195, 195, 195, 0.20), 5px -5px 10px 0px rgba(195, 195, 195, 0.20), -5px -5px 10px 0px rgba(239, 239, 239, 0.90), 5px 5px 13px 0px rgba(195, 195, 195, 0.90);
  

}
.title_text{
  color: #7D7373;
font-family: Poppins;
/* font-size: 24px; */
font-style: normal;

line-height: normal;
}
.card_title_edit{
  color: #637381;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.Reports_text{
color: #637381;
font-family: 'Inter', sans-serif;
/* font-size: 17.946px; */
font-style: normal;

line-height: normal;
}

.menu_container {
  height: 90vh;
  overflow-y: auto;
  padding-right: 0.5rem;   
  -webkit-overflow-scrolling: touch;  /* smooth mobile scrolling */
  
  /* —— scrollbar hide —— */
  scrollbar-width: none;      /* Firefox */
  -ms-overflow-style: none;   /* IE 10+/Edge Legacy */
}

.menu_container::-webkit-scrollbar {
  display: none;              /* Chrome, Safari, Edge (Chromium) */
}

.button_add{
  border-radius: 10px;
  background: #752BDE;
  color: #FFFFFF;
  padding: 10px 20px;
  color: #FFF;
font-family: Poppins;
/* font-size: 12px; */
font-style: normal;

line-height: normal;
}

.footertext{
  color: #8B8585;
font-family: Poppins;
/* font-size: 12px; */
font-style: normal;

line-height: normal;
}

.cart_text{
  color: #8C8B8B;
font-family: Poppins;
/* font-size: 12px; */
font-style: normal;

line-height: normal;
}

.profile_img{
  width: 40px;
  height: 40px;
  border-radius: 40px;
}

/* Form input styling */
.form-control {
  border-radius: 8px;
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  transition: all 0.3s;
}

.form-control:focus {
  border-color: #752BDE;
  box-shadow: 0 0 0 0.25rem rgba(117, 43, 222, 0.15);
}
@media (max-width: 576px) {
  .menu_container {
    padding-left: .5rem;
  }
}