::-webkit-scrollbar {
  display: none;
}
body {
  font-family: 'Inter', sans-serif !important;
}

/* Preserve Font Awesome icons */
.fa,
.fas,
.far,
.fal,
.fab {
  font-family: 'Font Awesome 6 Free', 'Font Awesome 6 Brands' !important;
}

.highlighted-section {
  outline: 2px solid #3f20fb;
  background-color: rgba(63, 32, 251, 0.1);
}

.edit-button {
  position: absolute;
  z-index: 1000;
}

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

html,
body {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.close-button{
  position: relative;
  top: 54px;
}

/* Form validation styles */
.field-error {
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Form input focus states */
input:focus,
select:focus,
textarea:focus {
  outline: none;
  transition: all 0.3s ease;
}

/* Loading spinner animation */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.fa-spin {
  animation: spin 1s linear infinite;
}

/* Success/Error message animations */
.fixed.top-4.right-4 {
  transition: transform 0.3s ease-in-out;
}

/* Form button hover effects */
button[type="submit"]:hover:not(:disabled) {
  transform: translateY(-1px);
  transition: transform 0.2s ease;
}

button[type="submit"]:active:not(:disabled) {
  transform: translateY(0);
}

/* Disabled button styles */
button[type="submit"]:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
