a:link, a:visited, a:hover, a:active{
  text-decoration: none !important;
}

.rounded, .select2-selection, .bootstrap-tagsinput, .bootstrap-tagsinput > .badge{
	border-radius:8px !important;
}

.rounded-start,  .select2-selection, .bootstrap-tagsinput, .bootstrap-tagsinput > .badge{
	border-top-left-radius: 8px !important;
    border-bottom-left-radius: 8px !important;
}

.rounded-end,  .select2-selection, .bootstrap-tagsinput, .bootstrap-tagsinput > .badge{
	border-top-right-radius: 8px !important;
    border-bottom-right-radius: 8px !important;
}

.rounded-top,  .select2-selection, .bootstrap-tagsinput, .bootstrap-tagsinput > .badge{
	border-top-left-radius: 8px !important;
    border-top-right-radius: 8px !important;
}

.rounded-bottom,  .select2-selection, .bootstrap-tagsinput, .bootstrap-tagsinput > .badge{
	border-bottom-left-radius: 8px !important;
    border-bottom-right-radius: 8px !important;
}

.backgroundImage{
	width: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	z-index: 1;
}

.form-check-input{
  width: 1.2em !important;
  height: 1.2em !important;
}

.form-check-input:active,.form-check-input:focus,.btn{
  outline:0 !important;
  box-shadow: none !important;
}

.list-group-item {
  border:0px !important;
}


/* Redes Sociales */

/* Card contenedor 
.card-redes {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}
 //Header 
.header-redes {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

/* Botón agregar 
.btn-add {
  background: #4f46e5;
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 10px;
  cursor: pointer;
}

.btn-edit {
background: #0eaf51;
color: #fff;
border: none;
padding: 10px 16px;
border-radius: 10px;
cursor: pointer;
}

.btn-add:hover {
  background: #4338ca;
}

.btn-delete {
background: #dc2626;
color: #fff;
border: none;
padding: 10px 16px;
border-radius: 10px;
cursor: pointer;
}

/* Tabla 
.tabla-redes {
  width: 100%;
  border-collapse: collapse;
}

.tabla-redes th,
.tabla-redes td {
  padding: 12px;
  border-bottom: 1px solid #eee;
  text-align: left;
}

.tabla-redes i {
  font-size: 18px;
}

/* Badge 
.badge {
  padding: 5px 10px;
  border-radius: 8px;
  font-size: 12px;
}

.badge.activo {
  background: #dcfce7;
  color: #166534;
}

.badge.inactivo {
  background: #fee2e2;
  color: #991b1b;
}

/* Modal */
/* Overlay *
.modal-red {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);

  /* centrado *
  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

/* Cuando está activo 
.modal-red.active {
  opacity: 1;
  visibility: visible;
}

/* Contenido 
.modal-content {
  background: #ffffff;
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
  padding: 25px 25px 30px;
  position: relative;

  box-shadow: 0 20px 50px rgba(0,0,0,0.15);

  transform: translateY(30px) scale(0.95);
  transition: all 0.3s ease;
}

/* Animación entrada
.modal-red.active .modal-content {
  transform: translateY(0) scale(1);
}

/* Botón cerrar 
.close {
  position: absolute;
  top: 15px;
  right: 15px;

  width: 35px;
  height: 35px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: #f3f4f6;

  font-size: 18px;
  font-weight: bold;
  color: #333;

  cursor: pointer;
  transition: all 0.2s ease;
}

.close:hover {
  background: #e5e7eb;
  transform: rotate(90deg);
}

/* Header opcional 
.modal-content h3 {
  text-align: center;
  margin-bottom: 20px;
}

/* Responsive 
@media (max-width: 480px) {
  .modal-content {
    margin: 20px;
    padding: 20px;
  }
}

/* Header 
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.modal-header h3 {
  font-size: 18px;
  font-weight: 600;
}

/* Body 
.modal-body {
  padding-top: 5px;
}

/* Form dentro del modal 
.modal-content .form-redes {
  padding: 0;
  margin: 0;
  box-shadow: none;
  background: transparent;
}

/* Inputs más compactos 
.modal-content .form-group {
  margin-bottom: 15px;
}

/* Select con icono 
.select-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.select-with-icon i {
  position: absolute;
  left: 12px;
  font-size: 16px;
  color: #555;
}

.select-with-icon select {
  padding-left: 35px;
}

/* Botón más integrado 
.modal-content .btn-guardar {
  margin-top: 10px;
}

/* ===== Inputs y selects dentro del modal ===== 
.modal-content input,
.modal-content select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
  background: #f9fafb;
  transition: all 0.3s ease;
  appearance: none;
}

/* Focus bonito 
.modal-content input:focus,
.modal-content select:focus {
  border-color: #6366f1 !important;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(99,102,241,0.15);
  outline: none;
}

/* Labels 
.modal-content label {
  font-size: 13px;
  font-weight: 500;
  color: #444;
}

/* Separación 
.modal-content .form-group {
  margin-bottom: 16px;
}

/* ===== Select con flecha personalizada ===== 
.modal-content select {
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23666' height='20' viewBox='0 0 20 20' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M5.5 7l4.5 5 4.5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
}

/*===== Botón 
.modal-content .btn-guardar {
  width: 100%;
  padding: 13px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

// Hover botón 
.modal-content .btn-guardar:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(79,70,229,0.25);
}

//Active click 
.modal-content .btn-guardar:active {
  transform: scale(0.98);
}

*/


