/* style_index.css */

/* Container layout */
.container {
  max-width: 1200px;
  margin: 20px auto;
  padding: 0 15px;
  font-family: Arial, sans-serif;
  color: #333;
}

/* Headings */
.container h1 {
  font-size: 2rem;
  margin-bottom: 20px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 8px 16px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  background-color: #007bff;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}
.btn:hover {
  background-color: #0056b3;
}

/* Table base */
.table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

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

/* Table header */
.table thead th {
  background-color: #f8f9fa;
  font-weight: 600;
}

/* Striped rows */
.table-striped tbody tr:nth-child(odd) {
  background-color: #f2f2f2;
}

/* Row hover */
.table tbody tr:hover {
  background-color: #e9ecef;
}

/* Actions links */
.table a {
  color: #007bff;
  text-decoration: none;
}
.table a:hover {
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .table th,
  .table td {
    padding: 8px;
  }
  .btn {
    padding: 6px 12px;
    font-size: 0.85rem;
  }
}
