.el-input {
  width: 100%;
}

.el-input__wrapper,
.el-select__wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid #dbe3ef;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 28px -22px rgba(15, 23, 42, 0.32);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.el-input__wrapper--textarea {
  align-items: flex-start;
  padding-top: 12px;
  padding-bottom: 12px;
}

.el-input__wrapper.is-focus,
.el-select__wrapper.is-focus,
.el-select__wrapper.is-focused {
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.el-input__prefix,
.el-input__suffix {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  flex: 0 0 auto;
}

.el-input__prefix-inner,
.el-input__suffix-inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.el-input__inner {
  width: 100%;
  min-width: 0;
  height: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #0f172a;
}

.el-textarea__inner {
  resize: vertical;
  min-height: 88px;
}

.el-input__inner::placeholder {
  color: #94a3b8;
}

.el-input__password-toggle {
  border: 0;
  background: transparent;
  padding: 0;
  color: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.el-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: #ffffff;
  color: #0f172a;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.el-button--default {
  border-color: #dbe3ef;
}

.el-button--default:hover {
  border-color: #93c5fd;
  color: #1d4ed8;
}

.el-button--primary {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(37, 99, 235, 0.18);
}

.el-button--primary:hover {
  box-shadow: 0 18px 34px rgba(37, 99, 235, 0.24);
}

.el-button.is-text {
  min-height: auto;
  padding: 0;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.el-button.is-plain {
  background: #ffffff;
}

.el-button.is-round {
  border-radius: 9999px;
}

.el-button.is-link {
  color: #2563eb;
}

.el-button--large {
  min-height: 44px;
  padding: 0 18px;
}

.el-button__loading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.el-button.is-disabled,
.el-button:disabled {
  cursor: not-allowed;
  opacity: 0.65;
  box-shadow: none;
}

.el-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.el-dropdown {
  position: relative;
  display: inline-flex;
}

.el-dropdown-menu {
  position: fixed;
  min-width: 180px;
  padding: 8px;
  border-radius: 16px;
  border: 1px solid rgba(219, 234, 254, 0.9);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 48px -28px rgba(15, 23, 42, 0.26);
  z-index: 1200;
}

.el-dropdown-menu__item {
  width: 100%;
  padding: 10px 12px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #334155;
  text-align: left;
  display: flex;
  align-items: center;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease;
}

.el-dropdown-menu__item:hover {
  background: #eff6ff;
  color: #1d4ed8;
}

.el-select {
  width: 100%;
}

.el-select__wrapper {
  position: relative;
  min-height: 54px;
  padding-right: 40px;
}

.el-select__selected-item {
  display: block;
  width: 100%;
  color: #0f172a;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.el-select__placeholder {
  color: #94a3b8;
  font-weight: 400;
}

.el-select__native {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.el-alert {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid transparent;
}

.el-alert__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.el-alert__content {
  font-size: 14px;
  font-weight: 600;
}

.el-alert--info {
  color: #1d4ed8;
  background: #eff6ff;
  border-color: #bfdbfe;
}

.el-alert--warning {
  color: #b45309;
  background: #fffbeb;
  border-color: #fde68a;
}

.el-fade-in-linear-enter-active,
.el-fade-in-linear-leave-active {
  transition: opacity 0.18s ease, transform 0.18s ease;
  transform-origin: top right;
}

.el-fade-in-linear-enter-from,
.el-fade-in-linear-leave-to {
  opacity: 0;
  transform: translateY(-6px) scale(0.98);
}

.el-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(6px);
  z-index: 1000;
}

.el-overlay-dialog {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.el-dialog {
  position: relative;
  width: min(100%, 520px);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 36px 72px -34px rgba(15, 23, 42, 0.4);
  overflow: hidden;
}

.el-dialog.is-align-center {
  margin: auto;
}

.el-dialog__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.el-dialog__title {
  color: #0f172a;
}

.el-dialog__headerbtn {
  border: 0;
  background: transparent;
  color: #64748b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.el-dialog__body,
.el-dialog__footer {
  position: relative;
}

.el-dialog__close {
  width: 20px;
  height: 20px;
}

.el-drawer__container {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: flex-end;
}

.el-drawer {
  position: relative;
  width: min(100%, 480px);
  height: 100%;
  margin-left: auto;
  background: #ffffff;
  box-shadow: -24px 0 48px -28px rgba(15, 23, 42, 0.35);
  overflow: hidden;
}

.el-drawer__body {
  height: 100%;
  overflow: auto;
}

.el-row {
  display: flex;
  flex-wrap: wrap;
}

.el-col {
  min-width: 0;
}

.el-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  gap: 12px;
}

.el-step__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.el-step__head {
  flex: 0 0 auto;
}

.el-step__icon {
  width: 28px;
  height: 28px;
  border-radius: 9999px;
  border: 1px solid #cbd5e1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
  background: #ffffff;
}

.el-step__head.is-process .el-step__icon,
.el-step__head.is-success .el-step__icon {
  border-color: #2563eb;
  background: #2563eb;
  color: #ffffff;
}

.el-step__title {
  font-size: 13px;
  font-weight: 700;
  color: #64748b;
}

.el-step__title.is-process,
.el-step__title.is-success {
  color: #0f172a;
}

.el-step__description {
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.5;
  color: #94a3b8;
}

.el-table {
  width: 100%;
}

.el-table__header,
.el-table__body {
  width: 100%;
  border-collapse: collapse;
}

.el-table__empty-text {
  text-align: center;
  color: #94a3b8;
}

.el-progress {
  width: 100%;
}

.el-progress--dashboard {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.el-progress-circle {
  transform: rotate(-90deg);
}

.el-progress-circle__track {
  stroke: rgba(148, 163, 184, 0.18);
}

.el-progress-circle__path {
  transition: stroke-dashoffset 0.25s ease;
}

.el-progress__text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.el-pagination {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.el-pagination__button,
.el-pagination__pager {
  min-width: 34px;
  height: 34px;
  padding: 0 10px;
  border-radius: 10px;
  border: 1px solid #dbe3ef;
  background: #ffffff;
  color: #334155;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.el-pagination__pager.is-active {
  border-color: #2563eb;
  background: #2563eb;
  color: #ffffff;
}

.el-pagination__button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.el-tooltip {
  display: inline-flex;
  align-items: center;
}

.el-menu {
  display: block;
}

.el-menu-item,
.el-sub-menu__title {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.el-sub-menu__icon-arrow {
  margin-left: auto;
  transition: transform 0.18s ease;
}

.el-sub-menu.is-opened > .el-sub-menu__title .el-sub-menu__icon-arrow {
  transform: rotate(90deg);
}

.el-menu--inline {
  display: block;
}

.el-popover__reference-wrapper {
  position: relative;
}

.el-popover {
  position: absolute;
  right: 0;
  bottom: calc(100% + 12px);
  z-index: 60;
  border-radius: 16px;
  border: 1px solid rgba(219, 234, 254, 0.9);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 48px -28px rgba(15, 23, 42, 0.26);
}

.el-popover--bottom,
.el-popover--bottom-end,
.el-popover--bottom-start {
  top: calc(100% + 12px);
  bottom: auto;
}

.el-popover--bottom-start {
  left: 0;
  right: auto;
}

.el-popover--bottom-end {
  right: 0;
  left: auto;
}

.el-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 28px 20px;
  text-align: center;
}

.el-empty__image {
  border-radius: 9999px;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.el-empty__description {
  color: #64748b;
  font-size: 14px;
  font-weight: 600;
}

.el-empty__bottom {
  display: flex;
  justify-content: center;
}

.el-checkbox {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.el-checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.el-checkbox__input {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.el-checkbox__original {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.el-checkbox__inner {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  border: 1.5px solid #cbd5e1;
  background: #fff;
  transition: border-color 0.18s ease, background-color 0.18s ease;
  position: relative;
}

.el-checkbox__input.is-checked .el-checkbox__inner {
  border-color: #2563eb;
  background: #2563eb;
}

.el-checkbox__input.is-checked .el-checkbox__inner::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.el-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  overflow: hidden;
  flex: 0 0 auto;
}

.el-avatar__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.el-form {
  display: block;
}

.el-form > .el-form-item + .el-form-item {
  margin-top: 16px;
}

.el-form-item__label {
  display: block;
  margin-bottom: 8px;
  color: #334155;
  font-size: 14px;
  font-weight: 600;
}

.el-form-item__content {
  width: 100%;
}

.el-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 9999px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.el-tag--success {
  color: #059669;
  background: #ecfdf5;
  border-color: #a7f3d0;
}

.el-tag--warning {
  color: #b45309;
  background: #fffbeb;
  border-color: #fde68a;
}

.el-tag--danger {
  color: #dc2626;
  background: #fef2f2;
  border-color: #fecaca;
}

.el-tag--info {
  color: #475569;
  background: #f8fafc;
  border-color: #cbd5e1;
}

.el-message-list {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  gap: 10px;
  z-index: 1200;
}

.el-message {
  min-width: 220px;
  max-width: min(92vw, 480px);
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(15, 23, 42, 0.92);
  color: #fff;
  box-shadow: 0 20px 40px -24px rgba(15, 23, 42, 0.45);
  font-size: 14px;
  line-height: 1.5;
}

.el-message--success {
  background: rgba(5, 150, 105, 0.96);
}

.el-message--warning {
  background: rgba(217, 119, 6, 0.96);
}

.el-message--error {
  background: rgba(220, 38, 38, 0.96);
}

.el-message-fade-enter-active,
.el-message-fade-leave-active {
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.el-message-fade-enter-from,
.el-message-fade-leave-to {
  opacity: 0;
  transform: translateY(-8px);
}
