@tailwind base;
@tailwind components;
@tailwind utilities;

@layer components {
  .text-sizes {
    @apply text-xs sm:text-sm md:text-base lg:text-lg
  }
}

/*

@layer components {
  .btn-primary {
    @apply py-2 px-4 bg-blue-200;
  }
}

*/

/* Tooltip container */
.tooltip {
  position: relative;
}

/* Tooltip text */
.tooltip-text {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s, opacity 0.3s ease-in-out;
}

/* Show tooltip text on hover */
.tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
.custom-dropdown-height {
    height: 300px; /* or any height you prefer */
    overflow-y: auto; /* Allows scrolling inside the dropdown */
}
.footer-links a {
    color: #007bff; /* Change this to your desired link color */
    text-decoration: none; /* This removes the underline */
}

.footer-links a:hover {
    text-decoration: underline; /* Underline on hover */
}

.animated-label {
  color: #006400; /* Default color for light mode */
  display: inline-block;
  animation: pulse 2s infinite;
}

@media (prefers-color-scheme: dark) {
  .animated-label {
    color: #00FF00; /* Neon green for dark mode */
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
