@font-face {
  font-family: 'BMJUA';
  src: url('/fonts/BMJUA_ttf.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

* {
  font-family: 'BMJUA', Arial, sans-serif;
  font-weight: 300;
  -ms-overflow-style: none;
  scrollbar-width: none;
}


input[type="password"] {
    font-family: "Poppins", sans-serif;
}


.web_font {
  font-family: 'BMJUA', Arial, sans-serif;
  font-weight: 300;
  text-shadow: 1px 1px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000;
}

body, html {
  overflow: hidden;
  background-color: #f8f9fa;
  height: 100vh;
  color: white;
}

/* Header */
.logo {
  width: 65px;
  height: 65px;
}





.language-holder {
  border-radius: 10px;
  background: linear-gradient(180deg, #4b0da2 0%, #68268b 100%);
  width: 250px;
  height: 45px;
}

.avatar {
  height: 45px;
  width: 45px;
  display: inline-block;
}

option {
  background-color: #1e1d24;
  color: white;
}

.menu-item {
  height: 48px;
  width: 100%;
  transition: background 0.3s, box-shadow 0.3s;
}

.menu-item:hover,
.menu-item.active {
  background-image: linear-gradient(144deg, #AF40FF, #5B42F3 50%, #00DDEB);
  box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
}

.menu-item.active::before,
.menu-item:hover::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  border-radius: 0 4px 4px 0;
  background: #fff;
  box-shadow: 0 0 10px rgba(123, 66, 255, 0.7);
}

*::-webkit-scrollbar {
  display: none;
}

.contents {
  background-color: #fff;
}

.table-holder {
  border-radius: 16px;
  background-color: #f8f9fa;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  margin-bottom: 20px;
}

.grad-bg {
  background-image: linear-gradient(144deg, #AF40FF, #5B42F3 50%, #00DDEB);
  box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
  cursor: pointer;
  transition: transform 0.25s;
}
.grad-bg:hover {
  transform: translateY(-2px);
}

.main-body {
  height: 100vh;
  overflow-y: auto;
}

.header {
  position: sticky;
  top: -10px;
  z-index: 100;
  background-color: #1e1d25;
}

.tab-holder {
  background-color: #19191d;
  border-radius: 10px;
}

.btn-grad.active,
.btn-grad:hover {
  background: linear-gradient(180deg, #4b0da2 0%, #68268b 100%);
  border-radius: 10px;
}

.op-50 {
  background-color: rgba(255, 255, 255, 0.05);
}

input.border-white.op-50 {
  border: 1px solid #FFFFFF0D;
}

.fs-24 {
  font-size: 24px;
}

/* Login Wrapper */
.login-wrapper {
  background-color: #f8f9fa;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-form {
  border-radius: 20px;
  border: 1px solid #AFAFAF;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(25px);
  padding: 35px;
  max-width: 95%;
  width: 530px;
  overflow-y: auto;
}

.inp {
  border-radius: 12px;
  border: 1px solid #000;
  width: 100%;
  height: 50px;
}

.or::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 2px;
  background-color: #FFFFFF66;
}

/* Chart */
.donut-chart {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 2rem;
  border-radius: 50%;
}

p.center {
  background: #394264;
  position: absolute;
  text-align: center;
  font-size: 28px;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 130px;
  height: 130px;
  margin: auto;
  border-radius: 50%;
  line-height: 35px;
  padding: 15% 0 0;
}

.portion-block {
  border-radius: 50%;
  clip: rect(0px, 200px, 200px, 100px);
  height: 100%;
  position: absolute;
  width: 100%;
}

.circle {
  border-radius: 50%;
  clip: rect(0px, 100px, 200px, 0px);
  height: 100%;
  position: absolute;
  width: 100%;
  font-family: monospace;
  font-size: 1.5rem;
}

/* Chart Parts */
#part1 {
  transform: rotate(0deg);
}
#part1 .circle {
  background-color: #E64C65;
  animation: first 1s forwards;
}

#part2 {
  transform: rotate(100deg);
}
#part2 .circle {
  background-color: #11A8AB;
  animation: second 1s forwards 1s;
}

#part3 {
  transform: rotate(250deg);
}
#part3 .circle {
  background-color: #4FC4F6;
  animation: third 0.5s forwards 2s;
}

#part4 {
  transform: rotate(250deg);
}
#part4 .circle {
  background-color: #ff0000;
  animation: fourth 0.5s forwards 2s;
}

.chart-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  height: 300px;
  width: 300px;
  background: transparent;
  border-radius: 50%;
  border: 2px dashed #A367DC;
  transform: translate(-50%, -50%);
}

/* Animation */
@keyframes first {
  to { transform: rotate(100deg); }
}
@keyframes second {
  to { transform: rotate(150deg); }
}
@keyframes third {
  to { transform: rotate(111deg); }
}
@keyframes fourth {
  to { transform: rotate(111deg); }
}

@media screen and (max-width: 1460px) {
  .chart-inner {
    border: unset !important;
  }
}

@media screen and (max-width: 992px) {
  .sidebar, header.header { display: none; }
  h1.font-bold.text-\[34px\].text-white { text-align: center; }
  .py-\[50px\] { padding-top: 20px; padding-bottom: 20px; }
  .px-\[40px\] { padding-left: 20px; padding-right: 20px; }
  .text-sm { font-size: 12px; }
  .text-lg { font-size: 14px; }
  .hide { display: none; }
  .refresh { width: 20px; }
  .mob-text { font-size: 12px; }
  .mob-overflow { overflow-x: scroll; }
  .mobile-menu {
    border-radius: 10px;
    background: #343a40;
    width: 210px;
    position: absolute;
    top: 80px;
    padding: 12px;
    right: 30px;
    z-index: 1000;
    display: none;
  }
  .mobile-menu.active { display: flex; }
  .qr.border.rounded-\[10px\].p-\[10px\] { width: 75%; }
}

@media screen and (max-width: 767px) {
  .login-form {
    overflow-y: scroll;
    height: auto;
    padding: 20px;
    max-height: 90vh;
  }
  .main-body { padding-bottom: 65px !important; }
  .tab-holder button {
    min-width: 150px;
    padding: 5px 0;
  }
  .tab-holder button:nth-child(3) {
    min-width: 225px;
    padding: 5px 0;
  }
  .qr, .qr img { width: 100% !important; }
  .chart-inner {
    height: 185px;
    width: 185px;
  }
}

/* Pagination */
.product__pagination,
.blog__pagination {
  padding-top: 10px;
}

.product__pagination a,
.blog__pagination a {
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 1px solid #1a1a1a;
  font-size: 14px;
  color: #1a1a1a;
  font-weight: 600;
  line-height: 28px;
  text-align: center;
  margin-right: 16px;
  transition: all 0.3s;
}

.product__pagination a:hover,
.blog__pagination a:hover {
  background: #5C1C94;
  border-color: #5C1C94;
  color: #ffffff;
}

.product__pagination a:last-child,
.blog__pagination a:last-child {
  margin-right: 0;
}

/* Responsive Elements */
.web {}

.mob { display: none; }

@media (max-width: 991px) {
  .web { display: none; }
  .mob { display: block; }
}
