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

/* Custom styles */
.text-bronze {
  color: #cd7f32;
}

.text-silver {
  color: #c0c0c0;
}

.text-gold {
  color: #ffd700;
}

.border-bronze {
  border-color: #cd7f32;
}

.border-silver {
  border-color: #c0c0c0;
}

.border-gold {
  border-color: #ffd700;
}

/* Reward tier cards hover effects */
.card.h-100 {
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.card.h-100:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Progress bar animation */
.progress-bar {
  transition: width 0.6s ease;
}

/* Badge styles */
.badge {
  padding: 0.35em 0.65em;
  font-size: 0.75em;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
}

.bg-success {
  background-color: #28a745;
  color: white;
}

/* Card border styles */
.border-2 {
  border-width: 2px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .card.h-100 {
    margin-bottom: 1rem;
  }
}
body {
  font-family: 'Helvetica', sans-serif;
  font-size: 12px;
  line-height: 1.4;
  color: #333; }

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px; }

.header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #eee; }

.logo {
  width: 150px; }
  .logo img {
    max-width: 100%; }

.company-info {
  text-align: right; }
  .company-info h1 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px; }
  .company-info p {
    margin: 5px 0; }

.facture-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px; }

.facture-details, .client-details {
  width: 45%; }

.client-details h3 {
  font-size: 16px;
  margin-bottom: 10px; }

.items-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px; }
  .items-table th, .items-table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #eee; }
  .items-table th {
    background-color: #f8f9fa;
    font-weight: bold; }
  .items-table tfoot tr td {
    border-top: 2px solid #eee; }
  .items-table tfoot .total {
    font-weight: bold;
    font-size: 14px; }
    .items-table tfoot .total td {
      border-top: 2px solid #333; }

.notes {
  margin: 30px 0;
  padding: 15px;
  background-color: #f8f9fa;
  border-radius: 4px; }
  .notes h3 {
    font-size: 16px;
    margin-bottom: 10px; }

.qr-code {
  text-align: center;
  margin: 30px 0; }
  .qr-code svg {
    max-width: 150px; }

.footer {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 2px solid #eee;
  text-align: center;
  font-size: 11px;
  color: #666; }
/*
 * 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.
 *


 */

/* Add your base styles here */
