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

/*

@layer components {
  .btn-primary {
    @apply py-2 px-4 bg-blue-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.
 *


 */

.emh-theme {
  background-color: black; /* Dark background */
  color: #d3d3d3; /* White text color */
  font-size: 1.2rem; /* Larger text (equivalent to Tailwind's text-lg) */
  font-weight: 400; /* Slightly bolder text (similar to Tailwind's font-semibold) */
  font-family: "Arial", sans-serif; /* Example font family, you can choose your preferred font */
}
.emh-theme .custom-ticket-link a {
  color: #ff5349; /* Sets the link color */
  border: 2px solid #ff5349; /* Sets the border with the orange color */
  padding: 8px; /* Adjust padding as per your design requirements */
  padding-left: 12px;
  padding-right: 12px;
  border-radius: 8px; /* Adjust border-radius for the desired curvature */
  display: inline-block; /* To ensure padding and border-radius are applied correctly */
  text-decoration: none; /* Optional: Removes the underline from links */
  text-transform: uppercase;
  /* Additional styles like margin, font size, etc., can be added here */
}

.emh-theme .custom-ticket-link a:hover {
  /* Optional: Style for hover state */
  color: darken(#4d4d4d, 10%); /* Example: Slightly darker color on hover */
  border-color: darken(
    #ff5349,
    10%
  ); /* Optional: Border color change on hover */
}

.ebi-theme {
  background-color: rgb(205, 205, 205); /* Dark background */
}
.ebi-theme .custom-ticket-link a {
  color: #000000; /* Sets the link color */
  border: 2px solid #000000; /* Sets the border with the orange color */
  padding: 8px; /* Adjust padding as per your design requirements */
  padding-left: 12px;
  padding-right: 12px;
  border-radius: 8px; /* Adjust border-radius for the desired curvature */
  display: inline-block; /* To ensure padding and border-radius are applied correctly */
  text-decoration: none; /* Optional: Removes the underline from links */
  text-transform: uppercase;
  /* Additional styles like margin, font size, etc., can be added here */
}

.other-theme {
}
