/* Estilos específicos para la vista de dominios */

/* Ajustes para que Bootstrap funcione bien con el layout existente */
.content .container-fluid {
  padding: 1.5rem;
}

/* Mejoras visuales para las tablas */
.table th {
  background-color: #f8f9fa;
  border-top: none;
  font-weight: 600;
  color: #495057;
}

.table-striped > tbody > tr:nth-of-type(odd) > td {
  background-color: rgba(0,0,0,.02);
}

/* Badges personalizados */
.badge {
  font-size: 0.75em;
}

/* Botones en grupos */
.btn-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
}

/* Cards con mejor espaciado */
.card {
  border: none;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  margin-bottom: 1.5rem;
}

.card-header {
  background-color: #f8f9fa;
  border-bottom: 1px solid #dee2e6;
  font-weight: 600;
}

/* Modal mejorado */
.modal-content {
  border: none;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* Responsive para móviles */
@media (max-width: 768px) {
  .content .container-fluid {
    padding: 1rem;
  }
  
  .table-responsive {
    font-size: 0.875rem;
  }
  
  .btn-group-sm > .btn {
    padding: 0.125rem 0.25rem;
    font-size: 0.75rem;
  }
}