.page-content-wrapper {
  padding-bottom: 50px !important;
}

.admin-login {
  height: 100vh !important;
  overflow: auto !important;
}

.gtranslate_wrapper>.notranslate:nth-child(1) {
  color: white;
}

.skiptranslate {
  display: none;
}

.gt_selector {
  width: 75px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--tertiary-color) 0%, var(--tertiary-color) 50%, var(--primary-color) 100%);
  color: var(--primary-color);
  padding: 2px;
  margin-right: 5px;
  font-size: 12px;
}


.swal2-modal {
  background-color: var(--background) !important;
  box-shadow: var(--shadow);
}

.swal2-title {
  color: var(--secondary-color) !important;
  font-size: 16px !important;
}

.swal2-text,
.swal2-html-container {
  color: #fff !important;
  padding: 2px 1.6em 0.3em !important;
  font-size: 14px !important;
}

.swal2-confirm {
  background-color: var(--primary-color) !important;
  color: var(--background) !important;
}

.swal2-success-fix {
  background-color: transparent !important;
}

.htmx-request #submit-button {
  cursor: not-allowed;
  opacity: 0.5;
}


.htmx-request .spinner-border {
  display: inline-block !important;
}

.spinner-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
}

.spinners {
  border: 2px solid #fff;
  border-top: 2px solid #9733eb;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  background: transparent !important;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.my-indicator {
  display: none;
}

.htmx-request .my-indicator {
  display: inline;

}

.htmx-request.my-indicator {
  display: inline;
}

.google-btn {
  background: white;
  color: #333;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 1rem 2rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  width: 100%;
  cursor: pointer;
}

.google-btn:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  color: #333;
}

.divider {
  display: flex;
  align-items: center;
  margin: 1rem 0;
  color: rgba(255, 255, 255, 0.6);
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.divider span {
  padding: 0 1rem;
  font-size: 0.9rem;
}

.hidden {
  display: none;
}