* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #f7f9fb;
  color: #333;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  color: #1f4e79;
}

.container {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  background: linear-gradient(135deg, #1f4e79, #153450);
  width: 100%;
  padding: 20px;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: start;
}
@media (min-width: 767px) {
  .sidebar {
    max-width: 300px;
  }
}
.sidebar .logo {
  text-align: center;
  margin-bottom: 2rem;
}
.sidebar .logo img {
  max-width: 80%;
}
.sidebar h2 {
  margin-bottom: 2rem;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.sidebar nav {
  width: 100%;
}
.sidebar nav a {
  display: flex;
  align-items: center;
  padding: 15px;
  color: white;
  font-size: 1.2rem;
  margin-bottom: 15px;
  border-radius: 10px;
  transition: background-color 0.4s ease, transform 0.4s ease;
}
.sidebar nav a ion-icon {
  margin-right: 10px;
  font-size: 1.8rem;
}
.sidebar nav a:hover, .sidebar nav a.active {
  background-color: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
}

.content {
  flex-grow: 1;
  padding: 40px;
  background-color: #f7f9fb;
}
.content h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}
.content .card {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  transition: box-shadow 0.4s ease;
}
.content .card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.content .card h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}
.content .card p {
  font-size: 1.2rem;
  color: #4d4d4d;
}
.content .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.content .header h1 {
  margin: 0;
}
.content .header .btn-new {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  font-size: 1rem;
  background: linear-gradient(135deg, #4CAF50, #3d8b40);
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.content .header .btn-new ion-icon {
  font-size: 1.5rem;
  margin-right: 8px;
}
.content .header .btn-new:hover {
  background: linear-gradient(135deg, #5cb860, #357a38);
}
@media (max-width: 768px) {
  .content .header {
    flex-direction: column;
    align-items: flex-start;
  }
  .content .header .btn-new {
    margin-top: 10px;
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }
  .content {
    padding: 20px;
  }
}
@media (min-width: 767px) {
  #login {
    width: 30%;
    margin: 0 auto;
  }
}
#login .login-logo--wrapper {
  background: linear-gradient(135deg, #1f4e79, #153450);
  max-width: 60%;
  margin: 2rem auto;
  padding: 1rem 2rem;
  border-radius: 1rem;
}
#login .login-logo--wrapper img {
  max-width: 100%;
  position: relative;
  top: 5px;
}

.alert-danger {
  background-color: #f8d7da;
  color: #721c24;
  padding: 15px 20px;
  border: 1px solid #f5c6cb;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  font-size: 1rem;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}
.alert-danger .alert-icon {
  margin-right: 10px;
  font-size: 1.5rem;
  color: #491217;
}
.alert-danger .alert-close {
  background: transparent;
  border: none;
  font-size: 1.2rem;
  color: #721c24;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}
.alert-danger .alert-close:hover {
  color: #20080a;
}

.table-container {
  width: 100%;
  overflow-x: auto;
  margin: 20px 0;
}
.table-container table {
  width: 100%;
  border-collapse: collapse;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.table-container table th, .table-container table td {
  padding: 15px 20px;
  text-align: left;
  font-size: 1rem;
  border-bottom: 1px solid #d1d9e6;
  transition: background-color 0.3s ease;
}
.table-container table th {
  background: linear-gradient(to bottom, #1f4e79, #153450);
  color: #fff;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.05rem;
  font-weight: bold;
}
.table-container table td {
  background-color: white;
}
.table-container table tr:nth-child(even) td {
  background-color: #f5f6fa;
}
.table-container table .action-icons {
  text-align: right;
}
.table-container table .action-icons a {
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
  position: relative;
  top: 2px;
}
.table-container table .action-icons a ion-icon {
  font-size: 1.2rem;
  cursor: pointer;
  transition: color 0.3s ease;
}
.table-container table .action-icons a ion-icon:hover {
  color: #3d8b40;
}
.table-container table .action-icons a ion-icon.edit {
  color: #4caf50;
}
.table-container table .action-icons a ion-icon.delete {
  color: #ff6b6b;
}

@media (max-width: 768px) {
  .table-container table th, .table-container table td {
    padding: 10px;
    font-size: 0.9rem;
  }
}
form {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
form label {
  font-weight: bold;
  font-size: 1.2rem;
}
form input, form textarea, form select, form .select2 {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1rem;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: border-color 0.4s ease;
  font-family: "Poppins", sans-serif;
}
form input:focus, form textarea:focus, form select:focus, form .select2:focus {
  border-color: #4CAF50;
  outline: none;
  box-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
}
form button {
  background-color: #4CAF50;
  color: white;
  padding: 15px 25px;
  border: none;
  border-radius: 10px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background-color 0.4s ease, transform 0.4s ease;
}
form button:hover {
  background-color: #3d8b40;
  transform: translateY(-3px);
}
form .form-check {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
form .form-check input[type=checkbox] {
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  border-radius: 4px;
  margin-right: 10px;
  cursor: pointer;
  transition: background-color 0.4s ease, border-color 0.4s ease;
  margin-bottom: 0;
}
form .form-check input[type=checkbox]:checked {
  background-color: #4CAF50;
  border-color: #4CAF50;
}
form .form-check input[type=checkbox]:focus {
  box-shadow: 0 0 3px rgba(76, 175, 80, 0.5);
}
form .form-check label {
  margin-bottom: 0;
  font-size: 1rem;
}
form .help-text {
  font-size: 0.9rem;
  color: #666;
  position: relative;
  top: -10px;
}

.select2 {
  padding: 0 !important;
}

.select2-container--default .select2-selection--multiple {
  border: 0 !important;
  border-radius: 10px;
}

/*# sourceMappingURL=styles.css-c8abc5f38d1992f4da1e03cd738a6a9b.map */
