/* Add this at the top of your CSS file */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');


/* static/css/custom.css */

/* Navbar override */

/* Button override */
.btn-primary {
  border-radius: 10px;
  background: #752BDE;
  border:none; /* Rounded corners */
  padding: 10px 20px;
  color: #FFF;
  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.btn-primary:hover {
  background-color:rgb(155, 107, 222);
  transform: translateY(-2px); /* Slight lift effect */
}

/* Card override */
.card {
  border: none;
  transition: all 0.3s ease;
  border-radius: 20px;
  background: #FFF;
  height: auto !important;
  box-shadow: 1px 1px 2px 0px rgba(255, 255, 255, 0.30) inset, -1px -1px 2px 0px rgba(230, 230, 230, 0.50) inset, -5px 5px 10px 0px rgba(230, 230, 230, 0.20), 5px -5px 10px 0px rgba(230, 230, 230, 0.20), -5px -5px 10px 0px rgba(255, 255, 255, 0.90), 5px 5px 13px 0px rgba(230, 230, 230, 0.90) !important;
}

.card:hover {
  box-shadow: 0 10px 15px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}

/* Custom class එකක් එකතු කිරීම */
.pos-header {
  color: #2c3e50;
  border-bottom: 2px solid #3498db;
  /* margin-top: 20px!important; */
}
thead{
  border-radius: 10px 10px 0px 0px !important;
}

th{
  
  background: #752BDE !important;
  color: #FFF!important;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 500; 
}