body {
  background-color: rgba(20, 111, 196, 0.1);
}

.mui-textfield {
  width: 100%;
  display: flex;
  flex-direction: column-reverse;
  gap: 8px;
}
.mui-textfield .mui-textfield__input {
  width: 100%;
  padding: 10px;
  border-radius: 0.8rem;
  border: 1px solid #ccc;
}
.mui-textfield .mui-textfield__label {
  font-size: 14px;
  color: #666;
  margin-bottom: 0;
  background-color: #fff;
  padding: 0 4px;
  font-family: "Roboto", sans-serif;
  pointer-events: none;
}

.mui-btn {
  padding: 10px 20px;
  border-radius: 0.8rem;
  border: 1px solid transparent;
  background-color: #146fc4;
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease;
}
.mui-btn:hover {
  background-color: #0c5192;
}
.mui-btn:active {
  background-color: #083a6a;
}
.mui-btn:disabled {
  background-color: #ccc;
  color: #666;
  cursor: not-allowed;
}

.mui-link {
  color: #146fc4;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.mui-link:hover {
  color: #0c5192;
}

.login-container {
  background-image: url("../assets/img/login-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
.login-container .login-card {
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 0 2rem 0 rgba(0, 0, 0, 0.8);
  width: 400px;
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.login-container .login-card .login-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.login-container .login-card .login-header .logo {
  height: 100px;
}
.login-container .login-card .login-header p {
  font-size: 16px;
  color: white;
  margin: 0;
}
.login-container .login-card form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.login-container .login-card form .mui-btn {
  width: 100%;
  background-color: #fb9a0c;
}
.login-container .login-card form .mui-btn:hover {
  filter: brightness(1.1);
}
.login-container .login-card form .mui-btn:active {
  filter: brightness(0.8);
}
.login-container .login-card form .mui-btn:disabled {
  filter: brightness(0.5);
  cursor: not-allowed;
}

.user-profile-btn img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
.user-profile-btn .es-text {
  font-size: 14px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 0.24rem;
}
.user-profile-btn small {
  font-size: 12px;
  color: #666;
}

.es-dropdown {
  position: relative;
  display: flex;
  gap: 0.5rem;
}
.es-dropdown .es-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  outline: none;
  border: none;
  background-color: transparent;
}
.es-dropdown .es-btn i {
  font-size: 1rem;
  color: #333;
}
.es-dropdown .es-btn i:hover {
  color: #146fc4;
}
.es-dropdown .es-btn i:active {
  color: #083a6a;
}
.es-dropdown .es-btn i:disabled {
  color: #ccc;
  cursor: not-allowed;
}
.es-dropdown .es-btn img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
.es-dropdown .es-btn .es-text {
  font-size: 14px;
}
@media (max-width: 768px) {
  .es-dropdown .es-btn .es-text {
    display: none;
  }
}
@media (max-width: 768px) {
  .es-dropdown .es-btn {
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(20, 111, 196, 0.2);
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .es-dropdown .es-btn:active {
    background-color: rgba(20, 111, 196, 0.2);
    transform: scale(0.95);
    transition: all 0.1s ease;
  }
}
.es-dropdown .es-btn .es-badge {
  background-color: #146fc4;
  color: #fff;
  border-radius: 50%;
  padding: 4px 10px;
  font-size: 12px;
}
.es-dropdown .es-dropdown__menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  list-style: none;
  margin: 0;
  padding: 0;
}
.es-dropdown .es-dropdown__menu .es-dropdown__menu-item {
  padding: 0.8rem 1.5rem;
  border-bottom: 1px solid #eee;
}
.es-dropdown .es-dropdown__menu .es-dropdown__menu-item a {
  text-decoration: none;
  color: #333;
}
.es-dropdown .es-dropdown__menu .es-dropdown__menu-item a:hover {
  color: #146fc4;
}
.es-dropdown .es-dropdown__menu .es-dropdown__menu-item:last-child {
  border-bottom: none;
}
.es-dropdown:hover .es-dropdown__menu {
  visibility: visible;
  opacity: 1;
}

.es-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  height: 67px;
  border-bottom: 1px solid rgba(20, 111, 196, 0.16);
  position: relative;
  z-index: 1000;
}
.es-header .brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 280px;
  border-right: 1px solid rgba(20, 111, 196, 0.16);
  padding: 0.5rem 1rem;
}
@media (max-width: 991px) {
  .es-header .brand {
    width: 73px !important;
  }
}
@media (max-width: 991px) {
  .es-header .brand a {
    display: none !important;
  }
}
.es-header .brand img {
  width: 60px;
}
.es-header .brand button {
  background-color: rgba(20, 111, 196, 0.05);
  border-radius: 100px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  outline: none;
  border: none;
  transition: all 0.3s ease;
}
.es-header .brand button:hover {
  background-color: rgba(20, 111, 196, 0.1);
  transform: scale(1.05);
}
.es-header .brand button:active {
  background-color: rgba(20, 111, 196, 0.2);
  transform: scale(0.95);
}
.es-header .brand button:disabled {
  background-color: rgba(20, 111, 196, 0.05);
  cursor: not-allowed;
}
.es-header .brand button i {
  font-size: 1.24rem;
  transition: transform 0.3s ease;
}
@media (max-width: 991px) {
  .es-header .brand button i::before {
    content: "\f479";
  }
}
.es-header .brand button.menu-open i {
  transform: rotate(180deg);
}
.es-header .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-grow: 1;
  padding: 0.5rem 1rem;
}
.es-header .content .page-title {
  font-size: 1.24rem;
  font-weight: 600;
  color: #333;
  flex-grow: 1;
}
@media (max-width: 768px) {
  .es-header .content .page-title {
    font-size: 1rem;
  }
}
.es-header .content .notifications {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border-right: 1px solid rgba(20, 111, 196, 0.16);
  padding-right: 1rem;
}
.es-header .content .notifications .es-btn {
  background-color: rgba(20, 111, 196, 0.1);
  border-radius: 100px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  outline: none;
  border: none;
}
.es-header .content .notifications .es-btn i {
  font-size: 1.24rem;
  color: #333;
}
.es-header .content .notifications .es-btn i:hover {
  color: #146fc4;
}
.es-header .content .notifications .es-btn i:active {
  color: #083a6a;
}
.es-header .content .notifications .es-btn i:disabled {
  color: #ccc;
  cursor: not-allowed;
}
.es-header .content .notifications .es-btn .badge {
  background-color: #146fc4;
  color: #fff;
  border-radius: 50%;
  padding: 4px 10px;
  font-size: 12px;
}
.es-header .es-dropdown .es-dropdown__menu {
  right: 0 !important;
  left: auto !important;
  min-width: 350px;
  max-width: 400px;
}
.es-header .es-dropdown .es-dropdown__menu .notification-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
  margin-bottom: 0.5rem;
}
.es-header .es-dropdown .es-dropdown__menu .notification-header .view-all-link {
  font-size: 0.8rem;
  color: #146fc4;
  text-decoration: none;
}
.es-header .es-dropdown .es-dropdown__menu .notification-header .view-all-link:hover {
  text-decoration: underline;
}
.es-header .es-dropdown .es-dropdown__menu .notification-item {
  padding: 0.75rem 0;
  border-bottom: 1px solid #f5f5f5;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
}
.es-header .es-dropdown .es-dropdown__menu .notification-item:last-child {
  border-bottom: none;
}
.es-header .es-dropdown .es-dropdown__menu .notification-item.unread {
  background-color: rgba(20, 111, 196, 0.05);
  border-left: 3px solid #146fc4;
  padding-left: 0.5rem;
}
.es-header .es-dropdown .es-dropdown__menu .notification-item.read {
  opacity: 0.7;
}
.es-header .es-dropdown .es-dropdown__menu .notification-item .notification-content {
  flex: 1;
}
.es-header .es-dropdown .es-dropdown__menu .notification-item .notification-content .notification-message {
  font-size: 0.875rem;
  color: #333;
  margin-bottom: 0.25rem;
  line-height: 1.4;
}
.es-header .es-dropdown .es-dropdown__menu .notification-item .notification-content .notification-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: #666;
}
.es-header .es-dropdown .es-dropdown__menu .notification-item .notification-content .notification-meta .sender {
  font-weight: 500;
}
.es-header .es-dropdown .es-dropdown__menu .notification-item .notification-content .notification-meta .time {
  color: #999;
}
.es-header .es-dropdown .es-dropdown__menu .notification-item .mark-read-btn {
  background: none;
  border: 1px solid #146fc4;
  color: #146fc4;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.7rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.es-header .es-dropdown .es-dropdown__menu .notification-item .mark-read-btn:hover {
  background-color: #146fc4;
  color: white;
}
.es-header .es-dropdown .es-dropdown__menu .notification-item.no-notifications {
  text-align: center;
  color: #666;
  font-style: italic;
  padding: 1rem;
}
.es-header .es-dropdown .es-dropdown__menu .notification-loading {
  text-align: center;
  color: #666;
  padding: 1rem;
  font-style: italic;
}

.body-wrapper {
  display: flex;
  flex-direction: row;
  height: calc(100vh - 67px);
  width: 100vw;
  position: relative;
}
.body-wrapper .es-menu {
  width: 280px;
  background-color: #fff;
  border-right: 1px solid rgba(20, 111, 196, 0.16);
  max-height: calc(100vh - 67px);
  overflow-y: auto;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1000;
}
@media (max-width: 991px) {
  .body-wrapper .es-menu {
    position: fixed;
    top: 67px;
    left: -280px;
    width: 280px;
    height: calc(100vh - 67px);
    z-index: 1001;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    transform: translateX(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
}
@media (max-width: 991px) {
  .body-wrapper .es-menu.mobile-open {
    transform: translateX(280px);
  }
}
.body-wrapper .es-main {
  flex-grow: 1;
  width: calc(100vw - 280px);
  max-height: calc(100vh - 67px);
  overflow-y: auto;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 991px) {
  .body-wrapper .es-main {
    width: 100%;
  }
}
.body-wrapper::after {
  content: "";
  position: fixed;
  top: 67px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
@media (min-width: 992px) {
  .body-wrapper::after {
    display: none;
  }
}
.body-wrapper.menu-open::after {
  opacity: 1;
  visibility: visible;
}

.es-hide-brand {
  width: 73px !important;
  height: 67px !important;
}
.es-hide-brand a {
  display: none;
}
.es-hide-brand button i::before {
  content: "\f479";
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: 400 !important;
  font-variant: normal;
  text-transform: none;
}

.es-hide-menu {
  width: 0 !important;
  overflow: hidden;
}
@media (max-width: 991px) {
  .es-hide-menu {
    transform: translateX(-280px) !important;
  }
}

.menu-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  border-bottom: 1px solid rgba(20, 111, 196, 0.16);
}
.menu-group .menu-group-title {
  font-size: 12px;
  text-transform: uppercase;
  color: #aaa;
  padding: 0 1rem;
}
.menu-group .menu-list {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu-group .menu-list .menu-item {
  position: relative;
}
.menu-group .menu-list .menu-item a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 0.8rem;
  color: #666;
}
.menu-group .menu-list .menu-item a i {
  font-size: 1rem;
}
.menu-group .menu-list .menu-item a i:hover {
  color: #146fc4;
}
.menu-group .menu-list .menu-item a span {
  font-size: 14px;
}
.menu-group .menu-list .menu-item a:hover {
  background-color: rgba(20, 111, 196, 0.05);
  color: #146fc4;
}
.menu-group .menu-list .menu-item .active {
  background-color: rgba(20, 111, 196, 0.1);
  color: #146fc4;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.24);
}
.menu-group .menu-list .menu-item .active i, .menu-group .menu-list .menu-item .active span {
  font-weight: 500;
}
.menu-group .menu-list .menu-item .active:hover {
  background-color: rgba(20, 111, 196, 0.1);
  color: #146fc4;
}
.menu-group .menu-list .menu-item:hover a {
  color: #0c5192;
}

.menu-foot-note {
  font-size: 12px;
  color: #aaa;
  padding: 1rem;
  text-align: center;
  display: block;
}

.es-main .page-title {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  border: 1px solid rgba(20, 111, 196, 0.16);
  border-radius: 16px;
  padding: 2rem;
  margin: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}
.es-main .page-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #146fc4, #fb9a0c);
}
.es-main .page-title .content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.es-main .page-title .content h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
  line-height: 1.2;
  transition: color 0.3s ease;
}
.es-main .page-title .content p {
  font-size: 1rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.4;
  transition: color 0.3s ease;
}
.es-main .page-title .actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-shrink: 0;
}
.es-main .page-title .actions .mui-btn, .es-main .page-title .actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  user-select: none;
}
.es-main .page-title .actions .mui-btn i, .es-main .page-title .actions .btn i {
  font-size: 1.125rem;
  transition: transform 0.3s ease;
}
.es-main .page-title .actions .mui-btn.btn-primary, .es-main .page-title .actions .mui-btn.mui-btn, .es-main .page-title .actions .btn.btn-primary, .es-main .page-title .actions .btn.mui-btn {
  background: linear-gradient(135deg, #146fc4 0%, #0c5192 100%);
  color: #fff;
  border-color: #146fc4;
}
.es-main .page-title .actions .mui-btn.btn-primary:hover, .es-main .page-title .actions .mui-btn.mui-btn:hover, .es-main .page-title .actions .btn.btn-primary:hover, .es-main .page-title .actions .btn.mui-btn:hover {
  background: linear-gradient(135deg, #0c5192 0%, #083a6a 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(20, 111, 196, 0.3);
}
.es-main .page-title .actions .mui-btn.btn-primary:hover i, .es-main .page-title .actions .mui-btn.mui-btn:hover i, .es-main .page-title .actions .btn.btn-primary:hover i, .es-main .page-title .actions .btn.mui-btn:hover i {
  transform: scale(1.1);
}
.es-main .page-title .actions .mui-btn.btn-primary:active, .es-main .page-title .actions .mui-btn.mui-btn:active, .es-main .page-title .actions .btn.btn-primary:active, .es-main .page-title .actions .btn.mui-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(20, 111, 196, 0.2);
}
.es-main .page-title .actions .mui-btn.btn-primary:focus, .es-main .page-title .actions .mui-btn.mui-btn:focus, .es-main .page-title .actions .btn.btn-primary:focus, .es-main .page-title .actions .btn.mui-btn:focus {
  outline: 2px solid rgba(20, 111, 196, 0.3);
  outline-offset: 2px;
}
.es-main .page-title .actions .mui-btn.mui-btn--flat, .es-main .page-title .actions .btn.mui-btn--flat {
  background: transparent;
  color: #146fc4;
  border-color: rgba(20, 111, 196, 0.2);
}
.es-main .page-title .actions .mui-btn.mui-btn--flat:hover, .es-main .page-title .actions .btn.mui-btn--flat:hover {
  background: rgba(20, 111, 196, 0.05);
  border-color: rgba(20, 111, 196, 0.3);
  transform: translateY(-1px);
}
.es-main .page-title .actions .mui-btn.mui-btn--flat:hover i, .es-main .page-title .actions .btn.mui-btn--flat:hover i {
  transform: rotate(180deg);
}
.es-main .page-title .actions .mui-btn.mui-btn--flat:active, .es-main .page-title .actions .btn.mui-btn--flat:active {
  background: rgba(20, 111, 196, 0.1);
  transform: translateY(0);
}
.es-main .page-title .actions .mui-btn.mui-btn--flat:focus, .es-main .page-title .actions .btn.mui-btn--flat:focus {
  outline: 2px solid rgba(20, 111, 196, 0.3);
  outline-offset: 2px;
}
.es-main .page-title .actions .mui-btn:disabled, .es-main .page-title .actions .btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}
.es-main .page-title .actions .mui-btn:disabled:hover, .es-main .page-title .actions .btn:disabled:hover {
  background: inherit;
  border-color: inherit;
  color: inherit;
}
@media (max-width: 768px) {
  .es-main .page-title {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
    padding: 1.5rem;
    margin: 0.5rem;
  }
  .es-main .page-title .content {
    text-align: center;
  }
  .es-main .page-title .content h1 {
    font-size: 1.75rem;
  }
  .es-main .page-title .content p {
    font-size: 0.875rem;
  }
  .es-main .page-title .actions {
    justify-content: center;
    flex-wrap: wrap;
  }
  .es-main .page-title .actions .mui-btn, .es-main .page-title .actions .btn {
    flex: 1;
    min-width: 120px;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .es-main .page-title {
    padding: 1rem;
    margin: 0.25rem;
  }
  .es-main .page-title .content h1 {
    font-size: 1.5rem;
  }
  .es-main .page-title .actions {
    flex-direction: column;
    gap: 0.75rem;
  }
  .es-main .page-title .actions .mui-btn, .es-main .page-title .actions .btn {
    width: 100%;
  }
}

.page-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
}
.page-body .stats-card {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  border: 1px solid rgba(20, 111, 196, 0.16);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  user-select: none;
  animation: cardFadeIn 0.6s ease-out;
}
.page-body .stats-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #146fc4, #fb9a0c);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.page-body .stats-card .title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.page-body .stats-card .title i {
  font-size: 1.5rem;
  color: #146fc4;
  transition: all 0.3s ease;
}
.page-body .stats-card .title span {
  font-size: 0.875rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}
.page-body .stats-card .value h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 0.5rem 0;
  line-height: 1.2;
  transition: color 0.3s ease;
}
.page-body .stats-card .value p {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.4;
  transition: color 0.3s ease;
}
.page-body .stats-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: rgba(20, 111, 196, 0.2);
}
.page-body .stats-card:hover::before {
  transform: scaleX(1);
}
.page-body .stats-card:hover .title i {
  color: #fb9a0c;
  transform: scale(1.1);
}
.page-body .stats-card:hover .title span {
  color: #146fc4;
}
.page-body .stats-card:hover .value h3 {
  color: #146fc4;
}
.page-body .stats-card:hover .value p {
  color: #374151;
}
.page-body .stats-card:active {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}
.page-body .stats-card:focus {
  outline: 2px solid #146fc4;
  outline-offset: 2px;
}
@media (max-width: 768px) {
  .page-body .stats-card {
    padding: 1.25rem;
  }
  .page-body .stats-card .title {
    gap: 0.5rem;
    margin-bottom: 0.75rem;
  }
  .page-body .stats-card .title i {
    font-size: 1.25rem;
  }
  .page-body .stats-card .title span {
    font-size: 0.75rem;
  }
  .page-body .stats-card .value h3 {
    font-size: 1.75rem;
  }
  .page-body .stats-card .value p {
    font-size: 0.8rem;
  }
}
@keyframes cardFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes cardPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}
.page-body .stats-card.clicked {
  animation: cardPulse 0.3s ease-in-out;
}
.page-body .stats-card.loading {
  position: relative;
  pointer-events: none;
}
.page-body .stats-card.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid rgba(20, 111, 196, 0.16);
  border-top: 2px solid #146fc4;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.page-body .stats-card.success {
  border-color: #10b981;
}
.page-body .stats-card.success::before {
  background: linear-gradient(90deg, #10b981, #34d399);
}
.page-body .stats-card.error {
  border-color: #ef4444;
}
.page-body .stats-card.error::before {
  background: linear-gradient(90deg, #ef4444, #f87171);
}
@keyframes titleSlideIn {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes buttonBounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-3px);
  }
  60% {
    transform: translateY(-2px);
  }
}
.page-body .page-title {
  animation: titleSlideIn 0.6s ease-out;
}
.page-body .page-title .actions .mui-btn:hover, .page-body .page-title .actions .btn:hover {
  animation: buttonBounce 0.6s ease-in-out;
}
.page-body .page-title .actions .mui-btn,
.page-body .page-title .actions .btn {
  position: relative;
  overflow: hidden;
}
.page-body .page-title .actions .mui-btn::after,
.page-body .page-title .actions .btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}
.page-body .page-title .actions .mui-btn:active::after,
.page-body .page-title .actions .btn:active::after {
  width: 300px;
  height: 300px;
}
.page-body .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  animation: rippleEffect 0.6s linear;
  pointer-events: none;
}
@keyframes rippleEffect {
  to {
    transform: scale(4);
    opacity: 0;
  }
}
.page-body .page-title .actions .mui-btn.loading,
.page-body .page-title .actions .btn.loading {
  position: relative;
  color: transparent !important;
}
.page-body .page-title .actions .mui-btn.loading::before,
.page-body .page-title .actions .btn.loading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.page-body .table-data {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
  overflow: auto;
}
.page-body .table-data .filters {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
}
@media (max-width: 991px) {
  .page-body .table-data .filters {
    flex-direction: column;
    gap: 0.5rem;
  }
}
.page-body .table-data .table-responsive {
  overflow-x: auto;
}
.page-body .table-data .table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border: 1px solid rgba(20, 111, 196, 0.16);
  margin-bottom: 0;
}
.page-body .table-data .table-bordered {
  border: 1px solid rgba(20, 111, 196, 0.16);
}

.page-header {
  padding: 1rem;
}
.page-header .page-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.page-header .page-header-row .page-header-title {
  font-size: 1.24rem;
  font-weight: 600;
  color: #333;
  margin: 0;
}
.page-header .page-header-row .actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.page-header .filters {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.es-ui-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  outline: none;
  background-color: transparent;
  text-decoration: none;
  white-space: nowrap;
}
.es-ui-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  border-color: #eee;
}
.es-ui-btn:active {
  transform: translateY(0);
  box-shadow: none;
}
.es-ui-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.es-ui-btn-primary {
  background-color: #146fc4;
  color: #fff !important;
  border: 1px solid #146fc4;
}
.es-ui-btn-primary:hover {
  background-color: rgb(15.2777777778, 84.7916666667, 149.7222222222);
  border: 1px solid rgb(15.2777777778, 84.7916666667, 149.7222222222);
}
.es-ui-btn-secondary {
  background-color: #0c5192;
  color: #fff;
  border: 1px solid #0c5192;
}
.es-ui-btn-secondary:hover {
  background-color: rgb(8.1265822785, 54.8544303797, 98.8734177215);
  border: 1px solid rgb(8.1265822785, 54.8544303797, 98.8734177215);
}
.es-ui-btn-outline-primary {
  background-color: transparent;
  color: #146fc4;
  border: 1px solid #146fc4;
}
.es-ui-btn-outline-primary:hover {
  background-color: #146fc4;
  color: #fff;
}
.es-ui-btn-outline-secondary {
  background-color: transparent;
  color: #0c5192;
  border: 1px solid #0c5192;
}
.es-ui-btn-outline-secondary:hover {
  background-color: #0c5192;
  color: #fff;
}
.es-ui-btn-flat {
  background-color: white;
  color: #333;
  border: none;
}
.es-ui-btn-flat:hover {
  background-color: rgba(20, 111, 196, 0.05);
}
.es-ui-btn-flat-outline {
  background-color: transparent;
  color: #333;
  border: 1px solid #333;
}
.es-ui-btn-flat-outline:hover {
  background-color: rgba(51, 51, 51, 0.05);
  border: 1px solid rgba(51, 51, 51, 0.3);
}
.es-ui-btn-flat-outline:active {
  background-color: rgba(51, 51, 51, 0.1);
  border: 1px solid rgba(51, 51, 51, 0.3);
}
.es-ui-btn-flat-outline:focus {
  outline: 2px solid rgba(51, 51, 51, 0.3);
  outline-offset: 2px;
}
.es-ui-btn-w-100 {
  width: 100%;
}
.es-ui-btn-danger {
  background-color: #d9534f;
  color: #fff;
  border: 1px solid #d9534f;
}
.es-ui-btn-danger:hover {
  background-color: rgb(201.4953271028, 48.0841121495, 43.5046728972);
  border: 1px solid rgb(201.4953271028, 48.0841121495, 43.5046728972);
}
.es-ui-btn-warning {
  background-color: #f0ad4e;
  color: #fff;
  border: 1px solid #f0ad4e;
}
.es-ui-btn-warning:hover {
  background-color: rgb(236.015625, 151.21875, 30.984375);
  border: 1px solid rgb(236.015625, 151.21875, 30.984375);
}
.es-ui-btn-success {
  background-color: #5cb85c;
  color: #fff;
  border: 1px solid #5cb85c;
}
.es-ui-btn-success:hover {
  background-color: rgb(68.2692307692, 156.7307692308, 68.2692307692);
  border: 1px solid rgb(68.2692307692, 156.7307692308, 68.2692307692);
}
.es-ui-btn-info {
  background-color: #5bc0de;
  color: #fff;
  border: 1px solid #5bc0de;
}
.es-ui-btn-info:hover {
  background-color: rgb(48.5431472081, 175.6903553299, 213.4568527919);
  border: 1px solid rgb(48.5431472081, 175.6903553299, 213.4568527919);
}
.es-ui-btn-light {
  background-color: #f7f7f7;
  color: #333;
  border: 1px solid #f7f7f7;
}
.es-ui-btn-light:hover {
  background-color: rgb(221.5, 221.5, 221.5);
  border: 1px solid rgb(221.5, 221.5, 221.5);
}
.es-ui-btn-dark {
  background-color: #262626;
  color: #fff;
  border: 1px solid #262626;
}
.es-ui-btn-dark:hover {
  background-color: rgb(12.5, 12.5, 12.5);
  border: 1px solid rgb(12.5, 12.5, 12.5);
}

.es-ui-btn-group {
  display: flex;
  align-items: center;
}
.es-ui-btn-group .es-ui-btn {
  border-radius: 0;
}
.es-ui-btn-group .es-ui-btn:first-child {
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}
.es-ui-btn-group .es-ui-btn:last-child {
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

.es-ui-input {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(20, 111, 196, 0.16);
  border-radius: 0.5rem;
  font-size: 14px;
  color: #333;
  outline: none;
}
.es-ui-input:focus {
  outline: 2px solid #146fc4;
  outline-offset: 2px;
}

.es-ui-select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(20, 111, 196, 0.16);
  border-radius: 0.5rem;
  font-size: 14px;
  color: #333;
  outline: none;
}
.es-ui-select:focus {
  outline: 2px solid #146fc4;
  outline-offset: 2px;
}

.es-ui-textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(20, 111, 196, 0.16);
  border-radius: 0.5rem;
  font-size: 14px;
  color: #333;
  outline: none;
}
.es-ui-textarea:focus {
  outline: 2px solid #146fc4;
  outline-offset: 2px;
}

.es-ui-page-header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(20, 111, 196, 0.16);
  padding: 1rem;
}
@media (max-width: 768px) {
  .es-ui-page-header {
    flex-direction: column;
    gap: 1rem;
  }
}
.es-ui-page-header .content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.5rem;
}
.es-ui-page-header .content .es-ui-page-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
}
@media (max-width: 768px) {
  .es-ui-page-header .content .es-ui-page-title {
    font-size: 1.24rem;
  }
}
.es-ui-page-header .content .es-ui-page-subtitle {
  margin: 0;
  font-size: 14px;
  color: #666;
}
.es-ui-page-header .actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
@media (min-width: 769px) {
  .es-ui-page-header .actions .mobile-signout {
    display: none;
  }
}
@media (max-width: 768px) {
  .es-ui-page-header .actions .mobile-signout {
    display: inline-flex;
  }
}

.es-ui-panel {
  background-color: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1);
  padding: 1rem;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}
.es-ui-panel:hover {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.es-ui-panel .es-ui-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.es-ui-panel .es-ui-panel-header i {
  font-size: 1.24rem;
  background-color: rgba(20, 111, 196, 0.16);
  color: #146fc4;
  border-radius: 50%;
  padding: 0.5rem;
  height: 48px;
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.es-ui-panel .es-ui-panel-header .es-ui-panel-title {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  margin: 0;
  font-size: 1.24rem;
  font-weight: 600;
  color: #333;
  display: flex;
  gap: 0.5rem;
}
.es-ui-panel .es-ui-panel-header .es-ui-panel-title .es-ui-panel-subtitle {
  margin: 0;
  font-size: 14px;
  color: #666;
}
.es-ui-panel .es-ui-panel-header .es-ui-panel-title-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.es-ui-panel .es-ui-panel-header .es-ui-panel-title-icon i {
  font-size: 1.24rem;
}
.es-ui-panel .es-ui-panel-body {
  position: relative;
  margin-top: 1rem;
}
.es-ui-panel .es-ui-panel-footer {
  padding: 1rem;
}
.es-ui-panel-table {
  padding: 0;
}
.es-ui-panel-table .es-ui-panel-header {
  padding: 1rem;
}
.es-ui-panel-table .es-ui-panel-body {
  margin-top: 0;
}
.es-ui-panel-panel-h100 {
  height: 100%;
}

.es-ui-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.es-ui-list .es-ui-list-item {
  padding: 1rem 0;
  border-top: 1px solid rgba(20, 111, 196, 0.16);
}
.es-ui-list .es-ui-list-item:hover {
  background-color: rgba(20, 111, 196, 0.05);
}
.es-ui-list .es-ui-list-item:last-child {
  border-bottom: none;
}
.es-ui-list .es-ui-list-item:first-child {
  border-top: none;
}

.es-ui-table-data {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid rgba(20, 111, 196, 0.16);
  margin-bottom: 0;
}
.es-ui-table-data thead {
  background-color: rgba(20, 111, 196, 0.05);
  color: #146fc4;
  font-weight: 600;
  text-align: left;
}
.es-ui-table-data thead th {
  padding: 0.8rem 1rem;
  border: 1px solid rgba(20, 111, 196, 0.16);
  font-weight: 600;
  text-align: left;
  color: #146fc4;
  width: fit-content;
}
.es-ui-table-data tbody tr {
  border-bottom: 1px solid #f5f5f5;
}
.es-ui-table-data tbody tr:hover {
  background-color: rgba(20, 111, 196, 0.05);
}
.es-ui-table-data tbody tr td {
  padding: 0.8rem 1rem;
  border: 1px solid #f5f5f5;
  font-size: 14px;
  color: #333;
  width: fit-content;
}
.es-ui-table-data tbody tr:last-child td {
  border-bottom: none;
}

.es-ui-responsive-table {
  width: 100%;
  border: 1px solid rgba(20, 111, 196, 0.16);
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.es-ui-responsive-table .es-ui-table-header {
  display: grid;
  grid-template-columns: 60px 100px 1fr 100px 120px 100px 120px 100px 100px 120px 1fr;
  background-color: rgba(20, 111, 196, 0.05);
  border-bottom: 2px solid #146fc4;
}
.es-ui-responsive-table .es-ui-table-header .es-ui-table-header-cell {
  padding: 1rem;
  font-weight: 600;
  color: #146fc4;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-right: 1px solid rgba(20, 111, 196, 0.16);
  display: flex;
  align-items: center;
}
.es-ui-responsive-table .es-ui-table-header .es-ui-table-header-cell:last-child {
  border-right: none;
}
.es-ui-responsive-table .es-ui-table-body .es-ui-table-row {
  display: grid;
  grid-template-columns: 60px 100px 1fr 100px 120px 100px 120px 100px 100px 120px 1fr;
  border-bottom: 1px solid #f5f5f5;
  transition: all 0.3s ease;
}
.es-ui-responsive-table .es-ui-table-body .es-ui-table-row:hover {
  background-color: rgba(20, 111, 196, 0.05);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.es-ui-responsive-table .es-ui-table-body .es-ui-table-row:last-child {
  border-bottom: none;
}
.es-ui-responsive-table .es-ui-table-body .es-ui-table-row .es-ui-table-cell {
  padding: 1rem;
  font-size: 0.875rem;
  color: #333;
  border-right: 1px solid #f5f5f5;
  display: flex;
  align-items: center;
  word-break: break-word;
}
.es-ui-responsive-table .es-ui-table-body .es-ui-table-row .es-ui-table-cell:last-child {
  border-right: none;
}
.es-ui-responsive-table .es-ui-table-body .es-ui-table-row .es-ui-table-cell i {
  margin-right: 0.5rem;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .es-ui-responsive-table .es-ui-table-header {
    display: none;
  }
  .es-ui-responsive-table .es-ui-table-body .es-ui-table-row {
    display: block;
    border-bottom: 1px solid rgba(20, 111, 196, 0.16);
    padding: 1rem;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  .es-ui-responsive-table .es-ui-table-body .es-ui-table-row:hover {
    transform: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  }
  .es-ui-responsive-table .es-ui-table-body .es-ui-table-row .es-ui-table-cell {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-right: none;
    border-bottom: 1px solid #f5f5f5;
  }
  .es-ui-responsive-table .es-ui-table-body .es-ui-table-row .es-ui-table-cell:last-child {
    border-bottom: none;
  }
  .es-ui-responsive-table .es-ui-table-body .es-ui-table-row .es-ui-table-cell::before {
    content: attr(data-label);
    font-weight: 600;
    color: #146fc4;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 80px;
    flex-shrink: 0;
  }
  .es-ui-responsive-table .es-ui-table-body .es-ui-table-row .es-ui-table-cell i {
    margin-right: 0.5rem;
  }
}
@media (max-width: 480px) {
  .es-ui-responsive-table .es-ui-table-body .es-ui-table-row {
    padding: 0.75rem;
  }
  .es-ui-responsive-table .es-ui-table-body .es-ui-table-row .es-ui-table-cell {
    padding: 0.5rem 0;
    font-size: 0.8rem;
  }
  .es-ui-responsive-table .es-ui-table-body .es-ui-table-row .es-ui-table-cell::before {
    font-size: 0.7rem;
    min-width: 70px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .es-ui-responsive-table .es-ui-table-header {
    grid-template-columns: 50px 80px 1fr 80px 100px 80px 100px 80px 80px 100px 1fr;
  }
  .es-ui-responsive-table .es-ui-table-body .es-ui-table-row {
    grid-template-columns: 50px 80px 1fr 80px 100px 80px 100px 80px 80px 100px 1fr;
  }
}
.es-ui-responsive-table.es-ui-table-loading .es-ui-table-body {
  position: relative;
  min-height: 200px;
}
.es-ui-responsive-table.es-ui-table-loading .es-ui-table-body::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  border: 3px solid rgba(20, 111, 196, 0.16);
  border-top: 3px solid #146fc4;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.es-ui-responsive-table.es-ui-table-empty .es-ui-table-body {
  text-align: center;
  padding: 3rem 1rem;
  color: #666;
}
.es-ui-responsive-table.es-ui-table-empty .es-ui-table-body::before {
  content: "No data available";
  font-size: 1.125rem;
  font-weight: 500;
}
.es-ui-responsive-table.es-ui-table-wallet .es-ui-table-header {
  grid-template-columns: 100px 1fr 80px 100px 1fr 190px;
}
.es-ui-responsive-table.es-ui-table-wallet .es-ui-table-body .es-ui-table-row {
  grid-template-columns: 100px 1fr 80px 100px 1fr 190px;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .es-ui-responsive-table.es-ui-table-wallet .es-ui-table-header {
    grid-template-columns: 80px 120px 70px 90px 1fr 140px;
  }
  .es-ui-responsive-table.es-ui-table-wallet .es-ui-table-body .es-ui-table-row {
    grid-template-columns: 80px 120px 70px 90px 1fr 140px;
  }
}
.es-ui-responsive-table.es-ui-table-employee .es-ui-table-header {
  grid-template-columns: 80px 150px 1fr 120px 120px 120px 120px 100px 100px;
}
.es-ui-responsive-table.es-ui-table-employee .es-ui-table-body .es-ui-table-row {
  grid-template-columns: 80px 150px 1fr 120px 120px 120px 120px 100px 100px;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .es-ui-responsive-table.es-ui-table-employee .es-ui-table-header {
    grid-template-columns: 70px 120px 1fr 100px 100px 100px 100px 80px 80px;
  }
  .es-ui-responsive-table.es-ui-table-employee .es-ui-table-body .es-ui-table-row {
    grid-template-columns: 70px 120px 1fr 100px 100px 100px 100px 80px 80px;
  }
}
.es-ui-responsive-table.es-ui-table-prize .es-ui-table-header {
  grid-template-columns: 1fr 80px 80px 80px 120px 120px 120px;
}
.es-ui-responsive-table.es-ui-table-prize .es-ui-table-body .es-ui-table-row {
  grid-template-columns: 1fr 80px 80px 80px 120px 120px 120px;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .es-ui-responsive-table.es-ui-table-prize .es-ui-table-header {
    grid-template-columns: 1fr 70px 70px 70px 100px 100px 100px;
  }
  .es-ui-responsive-table.es-ui-table-prize .es-ui-table-body .es-ui-table-row {
    grid-template-columns: 1fr 70px 70px 70px 100px 100px 100px;
  }
}
.es-ui-responsive-table.es-ui-table-revenue .es-ui-table-header {
  grid-template-columns: 100px 1fr 80px 100px 120px 120px 120px 120px;
}
.es-ui-responsive-table.es-ui-table-revenue .es-ui-table-body .es-ui-table-row {
  grid-template-columns: 100px 1fr 80px 100px 120px 120px 120px 120px;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .es-ui-responsive-table.es-ui-table-revenue .es-ui-table-header {
    grid-template-columns: 80px 1fr 70px 80px 100px 100px 100px 100px;
  }
  .es-ui-responsive-table.es-ui-table-revenue .es-ui-table-body .es-ui-table-row {
    grid-template-columns: 80px 1fr 70px 80px 100px 100px 100px 100px;
  }
}
.es-ui-responsive-table.es-ui-table-ticket .es-ui-table-header {
  grid-template-columns: 100px 120px 1fr 1fr 100px 120px 120px 150px 120px;
}
.es-ui-responsive-table.es-ui-table-ticket .es-ui-table-body .es-ui-table-row {
  grid-template-columns: 100px 120px 1fr 1fr 100px 120px 120px 150px 120px;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .es-ui-responsive-table.es-ui-table-ticket .es-ui-table-header {
    grid-template-columns: 80px 100px 1fr 1fr 80px 100px 100px 120px 100px;
  }
  .es-ui-responsive-table.es-ui-table-ticket .es-ui-table-body .es-ui-table-row {
    grid-template-columns: 80px 100px 1fr 1fr 80px 100px 100px 120px 100px;
  }
}
.es-ui-responsive-table.es-ui-table-vendor .es-ui-table-header {
  grid-template-columns: 1fr 1fr 100px 120px 120px 150px 120px 100px;
}
.es-ui-responsive-table.es-ui-table-vendor .es-ui-table-body .es-ui-table-row {
  grid-template-columns: 1fr 1fr 100px 120px 120px 150px 120px 100px;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .es-ui-responsive-table.es-ui-table-vendor .es-ui-table-header {
    grid-template-columns: 1fr 1fr 80px 100px 100px 120px 100px 80px;
  }
  .es-ui-responsive-table.es-ui-table-vendor .es-ui-table-body .es-ui-table-row {
    grid-template-columns: 1fr 1fr 80px 100px 100px 120px 100px 80px;
  }
}
.es-ui-responsive-table.es-ui-table-wallet-report .es-ui-table-header {
  grid-template-columns: 120px 1fr 80px 100px 150px 150px 100px 1fr;
}
.es-ui-responsive-table.es-ui-table-wallet-report .es-ui-table-body .es-ui-table-row {
  grid-template-columns: 120px 1fr 80px 100px 150px 150px 100px 1fr;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .es-ui-responsive-table.es-ui-table-wallet-report .es-ui-table-header {
    grid-template-columns: 100px 1fr 70px 80px 120px 120px 80px 1fr;
  }
  .es-ui-responsive-table.es-ui-table-wallet-report .es-ui-table-body .es-ui-table-row {
    grid-template-columns: 100px 1fr 70px 80px 120px 120px 80px 1fr;
  }
}
.es-ui-responsive-table.es-ui-table-winning .es-ui-table-header {
  grid-template-columns: 120px 1fr 120px 120px 100px 120px 1fr;
}
.es-ui-responsive-table.es-ui-table-winning .es-ui-table-body .es-ui-table-row {
  grid-template-columns: 120px 1fr 120px 120px 100px 120px 1fr;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .es-ui-responsive-table.es-ui-table-winning .es-ui-table-header {
    grid-template-columns: 100px 1fr 100px 100px 80px 100px 1fr;
  }
  .es-ui-responsive-table.es-ui-table-winning .es-ui-table-body .es-ui-table-row {
    grid-template-columns: 100px 1fr 100px 100px 80px 100px 1fr;
  }
}
.es-ui-responsive-table.es-ui-table-employee-list .es-ui-table-header {
  grid-template-columns: 80px 1fr 100px 120px 120px 120px 100px minmax(220px, 1.2fr);
}
.es-ui-responsive-table.es-ui-table-employee-list .es-ui-table-body .es-ui-table-row {
  grid-template-columns: 80px 1fr 100px 120px 120px 120px 100px minmax(220px, 1.2fr);
}
.es-ui-responsive-table.es-ui-table-employee-list.es-ui-table-admin .es-ui-table-header,
.es-ui-responsive-table.es-ui-table-employee-list.es-ui-table-admin .es-ui-table-body .es-ui-table-row {
  grid-template-columns: 70px 1fr 90px 110px 130px 110px 100px 90px 100px minmax(260px, 1.3fr);
}
.es-ui-table-employee-list .emp-pwd-text {
  font-size: 12px;
  margin-right: 4px;
  word-break: break-all;
}
.es-ui-table-employee-list .es-ui-btn-group {
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .es-ui-responsive-table.es-ui-table-employee-list .es-ui-table-header {
    grid-template-columns: 70px 1fr 80px 100px 100px 100px 80px minmax(180px, 1fr);
  }
  .es-ui-responsive-table.es-ui-table-employee-list .es-ui-table-body .es-ui-table-row {
    grid-template-columns: 70px 1fr 80px 100px 100px 100px 80px minmax(180px, 1fr);
  }
}
.es-ui-responsive-table.es-ui-table-notifications .es-ui-table-header {
  grid-template-columns: 200px 200px 2fr 160px 100px 200px;
}
.es-ui-responsive-table.es-ui-table-notifications .es-ui-table-body .es-ui-table-row {
  grid-template-columns: 200px 200px 2fr 160px 100px 200px;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .es-ui-responsive-table.es-ui-table-notifications .es-ui-table-header {
    grid-template-columns: 80px 80px 1.5fr 120px 80px 160px;
  }
  .es-ui-responsive-table.es-ui-table-notifications .es-ui-table-body .es-ui-table-row {
    grid-template-columns: 80px 80px 1.5fr 120px 80px 160px;
  }
}
.es-ui-responsive-table.recent-activity-table .es-ui-table-header {
  grid-template-columns: 60px 120px 120px 1fr 160px;
}
.es-ui-responsive-table.recent-activity-table .es-ui-table-body .es-ui-table-row {
  grid-template-columns: 60px 120px 120px 1fr 160px;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .es-ui-responsive-table.recent-activity-table .es-ui-table-header {
    grid-template-columns: 50px 100px 80px 120px 120px;
  }
  .es-ui-responsive-table.recent-activity-table .es-ui-table-body .es-ui-table-row {
    grid-template-columns: 50px 100px 80px 120px 120px;
  }
}

/*# sourceMappingURL=new-style.css.map */
