/* static/css/main.css or similar */
@tailwind base;
@tailwind components;
@tailwind utilities;

/* Add this block for your custom input style */
@layer components {
    .input-field {
      @apply mt-1 block w-full px-3 py-2 border border-gray-300 rounded-md shadow-sm placeholder-gray-400 focus:outline-none focus:ring-orange-500 focus:border-orange-500 sm:text-sm;
    }
}

/* Loading Modal Styles */
#loading-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

#loading-modal.show {
    opacity: 1;
    visibility: visible;
}

#loading-content {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transform: scale(0.95);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

#loading-modal.show #loading-content {
    transform: scale(1);
    opacity: 1;
}

/* Marquee animation for scrolling industries */
@keyframes marquee-horizontal {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.animate-marquee-horizontal {
  animation: marquee-horizontal 30s linear infinite;
}