/*
 * 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: 0;
  padding: 0;
}

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

table {
  width: 100%;
  border-collapse: collapse;
}

table, th, td {
  border: 1px solid #ddd;
}

th, td {
  padding: 10px;
  text-align: left;
}

a.button {
  display: inline-block;
  padding: 8px 15px;
  background-color: #007BFF;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

a.button:hover {
  background-color: #0056b3;
}

@media (max-width: 600px) {
  table, th, td {
    font-size: 14px;
  }

  a.button {
    padding: 6px 12px;
  }
}

.form-input {
  width: 100%;
  max-width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

@media (max-width: 600px) {
  .form-input {
    font-size: 14px;
    padding: 6px;
  }

  .button {
    padding: 6px 12px;
    font-size: 14px;
  }
}

.button, input.button {
  display: inline-block;
  padding: 8px 15px;
  background-color: #007BFF;
  color: white;
  text-decoration: none;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.button:hover, input.button:hover {
  background-color: #0056b3;
}

.button-group {
  display: flex;
  gap: 10px;
}

.button-group form {
  margin: 0;
}