﻿/* Dialog header style */
:root {
  /*    --mud-input-border-radius: 0px;
  --mud-chip-border-radius: 8px;
  --mud-button-border-radius: 8px;
  --mud-dialog-close-button-color: white;
  --table-pager-height: 48px;
  --table-toolbar-height: 40px;
  --table-toolbar-margin: 5px;
  --highliter-color: var(--mud-palette-secondary);
  --datagrid-header-height: 32px;
  --form-spacing: 10px;
  --form-padding: 7px;
  --main-content-padding: 15px;
  --mud-drawer-width-left: 190px;*/
}

.icon-small {
  font-size: 1rem;
  align-self: center;
}

.dense-tab {
  text-transform: capitalize;
  min-height: 38px;
}

.dense-tab .mud-tabs-tabbar-inner {
  min-height: 38px;
}

.blury {
  backdrop-filter: blur(2px);
}

.no-shadow {
  box-shadow: none;
}

.dense-select .mud-input-slot {
  padding: 7.5px 10px !important;
}

.dense-input .mud-input-slot {
  padding: 7.5px 11px !important;
  background-color: rgba(241, 245, 249, 0.75) !important;
  border-radius: 8px;
}
.dense-input input {
  color: black !important;
  opacity: 1 !important;
}
.dense-input .mud-input-outlined-border {
  border: none !important;
}

.circle-loader-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: "Montserrat", sans-serif;
  text-align: center;
}

.circle-loader {
  width: 80px;
  height: 80px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.circle-loader::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 6px solid #e0e0e0;
  border-top: 6px solid #06b4c6;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  z-index: 1;
}

.loader-icon {
  width: 60px;
  height: 30px;
  z-index: 2;
}

.loader-title {
  margin-top: 1.2rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: #222;
}

.loader-subtext {
  font-size: 0.95rem;
  color: #666;
  margin-top: 0.3rem;
  max-width: 260px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.blury {
  backdrop-filter: blur(2px);
}
