/*
 * 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.
 */
.hidden {
    display: none !important;
}

/* General Table Styles */
table {
  width: 100%;
  border-collapse: collapse; /* Ensures clean, single borders */
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

/* Style for table headers (th) and data cells (td) */
th, td {
  border: 1px solid black; /* The black lines you requested */
  padding: 8px;           /* Adds some space inside the cells */
  text-align: left;       /* Aligns text to the left */
}

/* Style for the header row to make it stand out */
thead th {
  background-color: #f2f2f2; /* A light grey background for headers */
}
