/* Estilos principales */
.shelton-docs-viewer {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  margin: 2rem 0;
}

.shelton-docs-header {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.shelton-docs-title {
  color: #1a4b7a;
  font-size: 1.5rem;
  margin: 0;
}

.shelton-docs-filters {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.shelton-docs-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}

.shelton-docs-table th,
.shelton-docs-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

.shelton-docs-table th {
  background-color: #f8f9fa;
  font-weight: 600;
}

.shelton-docs-pagination {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1.5rem;
}

/* Elementos interactivos */
.shelton-docs-button {
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.shelton-docs-button--primary {
  background: #1a4b7a;
  color: white;
  border: none;
}

.shelton-docs-button--danger {
  background: none;
  color: #dc3545;
  padding: 0;
}

/* Responsividad */
@media (max-width: 768px) {
  .shelton-docs-header {
    flex-direction: column;
    align-items: stretch;
  }

  .shelton-docs-table {
    display: block;
    overflow-x: auto;
  }
}
