/* Admin Panel Styles */
.sidebar {
  min-height: 100vh;
  background-color: #343a40;
  padding-top: 20px;
}

.sidebar .nav-link {
  color: #fff;
  padding: 10px 15px;
  margin: 5px 0;
  border-radius: 5px;
  transition: all 0.3s;
}

.sidebar .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.sidebar .nav-link.active {
  background-color: #0d6efd;
}

.sidebar .nav-link i {
  margin-right: 10px;
}

/* Login Page */
.login-page {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dashboard Cards */
.card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.card-body {
  padding: 20px;
}

/* Table Styles */
.table th {
  background-color: #f8f9fa;
  border-bottom: 2px solid #dee2e6;
}

/* Form Styles */
.form-control:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Custom Buttons */
.btn-action {
  padding: 5px 10px;
  margin: 0 2px;
}

/* Alert Messages */
.alert {
  margin-bottom: 20px;
  border-radius: 5px;
}
