

/* toast */
.toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #333;
  color: #fff;
  padding: 10px;
  border-radius: 5px;
}





body {
  background: #f4f6f9;
  font-family: 'Segoe UI', sans-serif;
}

/* Sidebar */
.sidebar {
  width: 240px;
  height: 100vh;
  position: fixed;
  background: #1e1e2f;
  color: white;
  padding-top: 20px;
}

.sidebar h4 {
  text-align: center;
}

.sidebar a {
  display: block;
  padding: 12px 20px;
  color: #ccc;
  text-decoration: none;
}

.sidebar a:hover {
  background: #34344a;
  color: white;
}

/* Content */
.content {
  margin-left: 240px;
  padding: 30px;
}

/* Cards */
.card {
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Inputs */
input, select {
  border-radius: 8px !important;
}

/* Botones */
.btn {
  border-radius: 8px;
}