html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
  background-color: #f8f9fa;
}

/* Term Dates Page Styling */
.term-dates-container {
  background-color: #f8f9fa;
  min-height: 100vh;
  padding: 2rem 0;
}

.term-dates-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: none;
}

.term-dates-table {
  border-collapse: separate;
  border-spacing: 0;
}

.term-dates-table thead th {
  background-color: #f8f9fa;
  border: none;
  font-weight: 600;
  color: #6c757d;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.term-dates-table tbody tr {
  border-bottom: 1px solid #e9ecef;
  transition: background-color 0.2s ease;
}

.term-dates-table tbody tr:hover {
  background-color: #f8f9fa;
}

.term-dates-table tbody tr:last-child {
  border-bottom: none;
}

.term-dates-table td {
  border: none;
  vertical-align: middle;
  padding: 1rem 1.5rem;
}

.term-dates-table th {
  border: none;
  vertical-align: middle;
  padding: 1rem 1.5rem;
}

.term-dates-title {
  color: #212529;
  font-weight: 600;
  font-size: 1.5rem;
}

.term-dates-create-btn {
  background-color: #007bff;
  border-color: #007bff;
  border-radius: 8px;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  transition: all 0.2s ease;
}

.term-dates-create-btn:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  transform: translateY(-1px);
}

.term-dates-action-btn {
  border-radius: 6px;
  font-weight: 500;
  padding: 0.5rem 1rem;
  margin-right: 0.5rem;
  transition: all 0.2s ease;
}

.term-dates-action-btn:hover {
  transform: translateY(-1px);
}

.term-dates-edit-btn {
  color: #007bff;
  border-color: #007bff;
}

.term-dates-edit-btn:hover {
  background-color: #007bff;
  color: white;
}

.term-dates-delete-btn {
  color: #dc3545;
  border-color: #dc3545;
}

.term-dates-delete-btn:hover {
  background-color: #dc3545;
  color: white;
}

.term-dates-empty-state {
  padding: 4rem 2rem;
  text-align: center;
}

.term-dates-empty-icon {
  font-size: 4rem;
  color: #6c757d;
  margin-bottom: 1rem;
}

.term-dates-empty-title {
  color: #6c757d;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.term-dates-empty-text {
  color: #6c757d;
  margin-bottom: 2rem;
}