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

@layer base {
  a, a div, a p, a:hover, a:hover div, a:hover p {
    cursor: pointer;
  }
}

@layer components {
  .btn {
    @apply px-8 py-3 rounded-full text-lg font-semibold text-white transition duration-300;
  }

  .btn-blue {
    @apply bg-blue-600 hover:bg-blue-700;
  }

  .btn-green {
    @apply bg-green-600 hover:bg-green-700;
  }

  input[type="range"] {
    @apply h-2 rounded-lg appearance-none cursor-pointer;
  }

  input[type="range"]::-webkit-slider-thumb {
    @apply appearance-none w-6 h-6 bg-blue-600 rounded-full shadow cursor-pointer;
    @apply hover:bg-blue-700 transition-colors duration-200;
  }

  input[type="range"]::-moz-range-thumb {
    @apply w-6 h-6 bg-blue-600 rounded-full shadow cursor-pointer border-0;
    @apply hover:bg-blue-700 transition-colors duration-200;
  }
}
/*
 * 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.
 *


 */
