/* 1. CARDS AUTOMÁTICAS */
.card {
	border: none !important;
	border-radius: 12px !important;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	margin-bottom: 1.5rem;
}

.card:hover {
	/* transform: translateY(-5px); */
	/* box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1) !important; */
}

.card-header {
	background-color: transparent !important;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
	padding: 1.25rem !important;
}

.card-title {
	font-weight: 700 !important;
	color: #333 !important;
}

.card-footer {
	background-color: rgba(0, 0, 0, 0.02) !important;
	border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
	border-bottom-left-radius: 12px !important;
	border-bottom-right-radius: 12px !important;
}

/* 2. INPUTS AUTOMÁTICOS (form-control) */
.form-control {
	border-radius: 8px !important;
	border: 1px solid #dce1e7 !important;
	padding: 0.6rem 1rem !important;
	height: auto !important;
	transition: all 0.2s ease-in-out !important;
	box-shadow: none !important;
}

/* Tamaño sm automático */
.form-control-sm {
	padding: 0.35rem 0.8rem !important;
	border-radius: 6px !important;
}

.form-control:focus {
	border-color: #007bff !important;
	box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.1) !important;
}

/* 3. BOTONES AUTOMÁTICOS (btn) */
.btn {
	border-radius: 8px !important;
	font-weight: 600 !important;
	padding: 0.5rem 1.2rem !important;
	transition: all 0.2s ease !important;
	border: none !important;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08) !important;
}

.btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15) !important;
}

.btn-sm {
	padding: 0.3rem 0.8rem !important;
	border-radius: 6px !important;
}

/* 4. NAV-TABS MODERNOS (Navegación) */
.nav-tabs {
  border-bottom: 2px solid #ebeef2 !important;
  gap: 10px;
}

.nav-tabs .nav-item .nav-link {
  border: none !important;
  color: #6c757d;
  font-weight: 600;
  padding: 0.8rem 1.rem;
  border-radius: 8px 8px 0 0 !important;
  transition: all 0.3s ease;
  position: relative;
}

.nav-tabs .nav-item .nav-link.active {
  background-color: transparent !important;
  color: #007bff !important;
}

/* Línea indicadora inferior animada para la pestaña activa */
.nav-tabs .nav-item .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #007bff;
  border-radius: 3px;
}

.nav-tabs .nav-item .nav-link:hover:not(.active) {
  color: #333;
  background-color: rgba(0, 0, 0, 0.03);
}

/* Ajustes específicos para colores de botones AdminLTE */
.btn-primary { background-color: #007bff !important; }
.btn-success { background-color: #28a745 !important; }
.btn-danger { background-color: #dc3545 !important; }
.btn-warning { background-color: #ffc107 !important; color: #333 !important; }

/* Outline cards automáticas */
.card-outline.card-primary { border-top: 4px solid #007bff !important; }
.card-outline.card-success { border-top: 4px solid #28a745 !important; }

label {
	font-weight: 600 !important;
	color: #555;
	margin-bottom: 0.4rem;
}