h1 {
    color: #0d522b; /* Replace with any color you want for your titles */
}

body {
    background-color: #e6f3e9;
    font-family: Roboto, sans-serif;
    color: #006e00;
}

table.header {
    margin-left: auto;
    margin-right: auto;
    width: 70%;
    border-spacing: 0;
}

table.header td, table.header th {
    padding: 15px;
}

hr {
    border: 2px solid #6ba594; /* Change #3498db to your desired color */
}

.styled-table {
  width: 100%;
  max-width: 1200px;
  margin: 2rem auto;            /* center & vertical space */
  border-collapse: collapse;    /* unify borders */
  font-size: 1.1rem;            /* slightly larger text */
  font-family: Arial, sans-serif;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.styled-table th,
.styled-table td {
  border: 2px solid #444;       /* dark, visible lines */
  padding: 0.75rem 1rem;        /* roomy cells */
  text-align: left;
}

.styled-table thead th {
  background-color: #555;       /* dark header background */
  color: #fff;                  /* white text */
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.styled-table tbody tr:nth-child(even) {
  background-color: #f2f2f2;    /* light stripe */
}

.styled-table tbody tr:hover {
  background-color: #e0e0e0;    /* hover highlight */
}

.styled-table tbody td:first-child {
  font-weight: bold;            /* emphasize first column */
}

.styled-table tfoot td {
  font-style: italic;
  background-color: #fafafa;
  text-align: right;
  border-top: 3px solid #444;
}

.auth-container {
  min-height: 100vh;
  background-color: #e6f3e9;
  padding-top: 50px;
}
.auth-card {
    background-color: #e6f3e9;
    border: 2px solid #0d522b;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.auth-card .card-header {
    background-color: #0d522b;
    color: white;
    border-bottom: none;
    border-radius: 8px 8px 0 0;
}

.auth-card .card-header h3 {
    margin: 0;
    font-weight: 600;
    color: white;
}

.auth-form .btn-primary {
    background-color: #0d522b;
    border-color: #0d522b;
    color: white;
    padding: 10px 20px;
    font-weight: 500;
}

.auth-form .btn-primary:hover {
    background-color: #006e00;
    border-color: #006e00;
    color: white;
}

.auth-form .form-control:focus {
    border-color: #6ba594;
    box-shadow: 0 0 0 0.2rem rgba(107, 165, 148, 0.25);
}

.auth-form .form-label {
    color: #006e00;
    font-weight: 500;
}

.auth-link {
    color: #006e00;
    text-decoration: none;
}

.auth-link:hover {
    color: #0d522b;
    text-decoration: underline;
}

.auth-container .card-body {
    color: #006e00;
}