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

/*

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

/* Fade-in animation fallback */
@keyframes fadeInSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-slide-up {
  opacity: 0;
  animation: fadeInSlideUp 0.6s ease-out forwards;
  animation-play-state: paused;
}

.fade-in-slide-up.visible {
  animation-play-state: running;
}

/* Ensure content is visible if JS is disabled */
.no-js .fade-in-slide-up {
  opacity: 1;
  transform: none;
}


/*
 * 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.
 *


 */

@layer utilities {
    .bg-custom-color {
        background-color: #054d40;

    }
    .bg-custom-blue {
        background-color: #1565C0;
    }
    
    .gray-50 {
        color: #fafafa;
    }
    .text-sub-header {
        color: #004D40;
    }
    .bg-daily-sales {
        background-color: #E0E0E0;
    }
    .text-inventory {
        color: #37474F;
    }
    .text-blue-basic {
        color: #006064;
    }
    .text-dark {
        color: #263238;
    }
    .text-gray-50 {
        color:#f5f5f5e8;
    }
    .text-blue-gray-100 {
        color: #CFD8DC;
    }
    .text-blue-gray-800 {
        color: #37474F;
    }
    .text-blue-gray-900 {
        color: #263238;
    }
    .text-blue-gray-700 {
        color: #546E7A;
    }
    .text-green-800 {
        color: #2E7D32;
    }
    .bg-some-color {
        background-color: #004D40;
    }
    
}
