/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

body {
  font-family: Arial, sans-serif;
  margin: auto;
  padding: 20px;
  background-color: #f4f4f4;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background: #fff;

  th,
  td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
  }
}

.section-header-blue {
  background-color: #4285F4;
  color: white;
  font-weight: bold;
}

.blue-section {
  td {
    background-color: #C9DAF8;
  }
}

.section-header-purple {
  background-color: #C27BA0;
  color: white;
  font-weight: bold;
}

.purple-section {
  td {
    background-color: #EAD1DC;
  }
}

.section-header-yellow {
  background-color: #E69138;
  color: white;
  font-weight: bold;
}

.yellow-section {
  td {
    background-color: #FCE5CD;
  }
}

.section-header-green {
  background-color: #6AA84F;
  color: white;
  font-weight: bold;
}

.green-section {
  td {
    background-color: #caecbd;
  }
}

select.language-select {
  background-color: #1E2939 !important; /* Tailwind bg-gray-800 */
  color: white !important;
}

select.language-select:focus {
  background-color: #1E2939 !important; /* Ensures bg remains gray */
  color: white !important;
  outline: none !important;
  border: none !important;
}
