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

@layer components {
  .btn-main {
    @apply inline-flex items-center justify-center rounded-md text-sm font-medium shadow-sm border border-gray-200 bg-white h-10 hover:text-blue-600 hover:border-gray-300 transition-colors duration-200;
  }

  .btn-main-white {
    @apply inline-flex items-center justify-center w-10 h-10 rounded-xl border border-gray-200 bg-white text-gray-600 hover:text-blue-600 hover:border-blue-600 hover:bg-blue-50 transition-all shadow-sm
  }

  .box {
    box-shadow: 0px 3px 9px #00000008,0px 0.7px 1.4625px rgba(0,0,0,.015);
    @apply border border-gray-200/80 bg-white
  }
  
  .tab-button {
    @apply relative overflow-hidden;
    @apply text-gray-600;
    @apply bg-transparent;
    @apply border-t border-b border-gray-200/60;
    @apply transition-all duration-300 ease-out;
  }
  
  .tab-button:first-child {
    @apply rounded-l-md;
    @apply border-r-0 border-l;
  }
  
  .tab-button:last-child {
    @apply rounded-r-md;
    @apply border-l-0 border-r;
  }
  
  .tab-button:hover {
    @apply text-gray-900;
    @apply bg-gray-100/80;
    @apply scale-[1.01];
    @apply border-gray-200/60;
  }
  
  .tab-button.active {
    @apply text-blue-600;
    @apply bg-blue-50;
    @apply border border-blue-100/80;
  }
  
  .tab-button svg {
    @apply text-gray-400 transition-colors duration-300;
  }
  
  .tab-button:hover svg {
    @apply text-gray-700;
    @apply scale-[1.01];
    @apply transform;
  }
  
  .tab-button.active svg {
    @apply text-blue-500;
  }
  
  .badge {
    @apply px-2 py-0.5 rounded-full text-xs font-medium;
    @apply bg-gray-100/80 text-gray-600;
    @apply group-hover:bg-gray-200/80 group-hover:text-gray-700;
  }
  
  .tab-button.active .badge {
    @apply bg-blue-100 text-blue-600;
  }
  
  @keyframes fade-in {
    from { opacity: 0; transform: translate(-50%, 4px); }
    to { opacity: 1; transform: translate(-50%, 0.125rem); }
  }
  
  .animate-fade-in {
    animation: fade-in 0.3s ease-out forwards;
  }
}
/*
 * 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.
 *


 */
