.events-shell {
  display: grid;
  gap: 7px;
  padding: 11px;
  background: var(--color-app-bg, var(--color-surface-soft));
  overflow-x: hidden;
}

.events-header,
.events-controls,
.events-table-panel,
.events-detail-panel,
.events-modal-panel {
  border: 1px solid var(--color-border);
  border-radius: 0;
  background: var(--color-surface);
  box-shadow: none;
}

.events-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 11px;
}

.events-header h1 {
  margin: 0;
  color: var(--color-heading);
  font-size: var(--font-size-3);
  line-height: var(--line-tight);
}

.events-header p {
  margin: 1px 0 0;
}

.events-header p,
.events-status,
.events-empty p,
.events-detail-empty p,
.events-detail-sub,
.event-meta,
.event-muted {
  color: var(--color-muted);
  font-size: 11px;
}

.events-controls {
  display: grid;
  grid-template-columns: minmax(210px, 300px) minmax(0, 1fr);
  gap: 7px;
  align-items: center;
  padding: 6px;
}

.events-search {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 30px;
  padding: 0 9px;
  border: 1px solid var(--color-border);
  border-radius: 2px;
  background: var(--color-surface);
}

.events-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--color-heading);
  font: inherit;
  font-size: 12px;
}

.events-search input::placeholder,
.events-form input::placeholder,
.events-form textarea::placeholder {
  color: var(--color-soft-muted);
}

.events-search svg,
.events-primary-action svg,
.events-secondary-action svg,
.event-action svg,
.events-icon-button svg,
.events-empty svg,
.events-detail-empty svg,
.event-thumb svg,
.events-token-icon svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.events-filter-group {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--color-border) transparent;
}

.events-filter-group::-webkit-scrollbar,
.events-table-scroll::-webkit-scrollbar {
  height: 6px;
}

.events-filter-group::-webkit-scrollbar-thumb,
.events-table-scroll::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: 0;
}

.events-filter-group button,
.event-action,
.events-secondary-action,
.events-primary-action,
.events-icon-button {
  height: 30px;
  border: 1px solid var(--color-border);
  border-radius: 2px;
  font-size: 11px;
  font-weight: var(--font-weight-bold);
  cursor: pointer;
  transition: background .16s ease, border-color .16s ease, color .16s ease, box-shadow .16s ease;
}

.events-filter-group button {
  flex: 0 0 auto;
  padding: 0 9px;
  background: var(--color-surface);
  color: var(--color-muted);
  white-space: nowrap;
}

.events-filter-group button.is-active {
  background: var(--color-heading);
  border-color: var(--color-heading);
  color: var(--color-white);
}

.event-action:hover,
.events-secondary-action:hover,
.events-primary-action:hover,
.events-icon-button:hover,
.events-filter-group button:hover {
  background: var(--color-surface-soft);
  border-color: var(--color-soft-muted);
  transform: none;
  box-shadow: none;
}

.events-primary-action:hover,
.event-action.primary:hover {
  background: var(--color-brand);
  border-color: var(--color-brand);
  color: var(--color-white);
  box-shadow: 0 0 0 2px rgba(196, 31, 44, .08);
}

.event-action:disabled,
.events-secondary-action:disabled,
.events-primary-action:disabled,
.events-icon-button:disabled {
  cursor: not-allowed;
  opacity: .55;
  transform: none;
  box-shadow: none;
}

.events-filter-group button:focus-visible,
.event-action:focus-visible,
.events-secondary-action:focus-visible,
.events-primary-action:focus-visible,
.events-icon-button:focus-visible,
.events-table tr:focus-visible,
.events-form input:focus-visible,
.events-form select:focus-visible,
.events-form textarea:focus-visible,
.events-switch-grid input[type="checkbox"]:focus-visible,
.events-token-field input:focus-visible {
  outline: 2px solid var(--color-brand);
  outline-offset: 2px;
}

.events-status {
  min-height: 15px;
  line-height: 1.2;
}

.events-status[data-tone="error"] {
  color: var(--color-brand);
  font-weight: var(--font-weight-bold);
}

.events-layout {
  display: grid;
  grid-template-columns: minmax(0, 76fr) minmax(270px, 24fr);
  gap: 9px;
  align-items: start;
}

.events-table-panel {
  min-width: 0;
  overflow: hidden;
}

.events-table-scroll {
  max-width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--color-border) transparent;
}

.events-table {
  width: max-content;
  min-width: 1540px;
  border-collapse: collapse;
  table-layout: fixed;
}

.events-table th,
.events-table td {
  padding: 4px 8px;
  text-align: left;
  vertical-align: middle;
  font-size: 11px;
  line-height: 1.2;
}

.events-table th {
  position: sticky;
  top: 0;
  z-index: 2;
  height: 28px;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-muted);
  font-size: 9px;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0;
}

.events-table th:nth-child(1),
.events-table td:nth-child(1) { width: 32px; padding-right: 0; }
.events-table th:nth-child(2),
.events-table td:nth-child(2) { width: 240px; }
.events-table th:nth-child(3),
.events-table td:nth-child(3) { width: 170px; }
.events-table th:nth-child(4),
.events-table td:nth-child(4) { width: 125px; }
.events-table th:nth-child(5),
.events-table td:nth-child(5) { width: 124px; }
.events-table th:nth-child(6),
.events-table td:nth-child(6) { width: 112px; }
.events-table th:nth-child(7),
.events-table td:nth-child(7) { width: 106px; }
.events-table th:nth-child(8),
.events-table td:nth-child(8) { width: 150px; }
.events-table th:nth-child(9),
.events-table td:nth-child(9),
.events-table th:nth-child(10),
.events-table td:nth-child(10),
.events-table th:nth-child(11),
.events-table td:nth-child(11) { width: 76px; }
.events-table th:nth-child(12),
.events-table td:nth-child(12) { width: 100px; }
.events-table th:nth-child(13),
.events-table td:nth-child(13) { width: 132px; }
.events-table th:nth-child(14),
.events-table td:nth-child(14) { width: 90px; }

.events-table tbody tr {
  cursor: pointer;
}

.events-table tbody td {
  height: 44px;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface);
}

.events-table tbody td:first-child {
  position: sticky;
  left: 0;
  z-index: 1;
  border-left: 3px solid transparent;
  background: var(--color-surface);
}

.events-table th:first-child {
  position: sticky;
  left: 0;
  z-index: 3;
}

.events-table tr:hover td,
.events-table tr:focus-visible td {
  background: var(--color-surface-soft);
  border-color: var(--color-border);
}

.events-table tr:hover td:first-child,
.events-table tr:focus-visible td:first-child {
  background: var(--color-surface-soft);
}

.events-table tr.is-selected td,
.events-table tr.is-selected td:first-child {
  background: var(--color-surface-soft);
  border-color: var(--color-border);
}

.events-table tr.is-selected td:first-child {
  border-left-color: var(--color-brand);
}

.event-name-cell {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
}

.event-name-cell > div:last-child,
.event-client,
.events-table td > div {
  min-width: 0;
}

.event-thumb {
  width: 46px;
  height: 31px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 0;
  background: var(--color-surface-soft);
  color: var(--color-muted);
}

.event-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-title,
.event-client,
.event-number,
.event-detail-title {
  color: var(--color-heading);
  font-weight: var(--font-weight-heavy);
}

.event-title,
.event-client,
.event-meta,
.events-detail-item strong,
.events-metric strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.event-meta {
  margin-top: 1px;
}

.event-number {
  font-variant-numeric: tabular-nums;
}

.event-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 17px;
  margin-right: 3px;
  padding: 0 5px;
  border: 1px solid var(--color-border);
  border-radius: 2px;
  background: var(--color-surface);
  color: var(--color-muted);
  font-size: 9px;
  font-weight: var(--font-weight-bold);
  line-height: 1;
  white-space: nowrap;
}

.event-pill::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 1px;
  background: var(--color-soft-muted);
}

.event-pill.live::before,
.event-pill.active::before,
.event-pill.ready::before,
.event-pill.upcoming::before { background: var(--color-success); }
.event-pill.completed::before { background: var(--color-muted); }
.event-pill.archived::before,
.event-pill.deleted::before,
.event-pill.inactive::before { background: var(--color-soft-muted); }
.event-pill.draft::before { background: var(--color-warning); }
.event-pill.cancelled::before { background: var(--color-brand); }

.event-actions {
  display: flex;
  justify-content: flex-end;
  gap: 4px;
}

.event-action,
.events-secondary-action,
.events-primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0 9px;
  text-decoration: none;
  white-space: nowrap;
}

.event-action.compact {
  height: 27px;
  padding: 0 8px;
}

.event-action,
.events-secondary-action {
  background: var(--color-surface);
  color: var(--color-heading);
}

.events-primary-action,
.event-action.primary {
  background: var(--color-brand);
  border-color: var(--color-brand);
  color: var(--color-white);
}

.event-action.danger {
  color: var(--color-brand);
  background: var(--color-surface);
}

.events-icon-button {
  width: 30px;
  padding: 0;
  display: grid;
  place-items: center;
  background: var(--color-surface);
  color: var(--color-heading);
}

.events-empty,
.events-detail-empty {
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 28px 14px;
  text-align: center;
}

.events-empty[hidden] {
  display: none !important;
}

.events-detail-empty svg {
  width: 48px;
  height: 48px;
  padding: 12px;
  border: 1px solid var(--color-border);
  border-radius: 0;
  background: var(--color-surface-soft);
  color: var(--color-muted);
}

.events-empty h2,
.events-detail-empty h2,
.events-detail-panel h2,
.events-detail-panel h3,
.events-modal-head h2,
.events-form-section h3,
.events-token-panel h2 {
  margin: 0;
  color: var(--color-heading);
}

.events-detail-panel {
  position: sticky;
  top: 11px;
  align-self: start;
  min-height: 320px;
  padding: 6px;
}

.events-detail-cover {
  height: 88px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 0;
  background: var(--color-surface-soft);
  color: var(--color-muted);
}

.events-detail-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.events-detail-head,
.events-detail-section,
.events-detail-actions {
  margin-top: 6px;
}

.events-detail-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 4px;
}

.events-detail-panel h3 {
  padding-top: 6px;
  border-top: 1px solid var(--color-border);
  font-size: 8.5px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.events-state-note {
  margin: 6px 0 0;
  padding: 5px 6px;
  border: 1px solid var(--color-border);
  border-radius: 0;
  background: var(--color-surface-soft);
  color: var(--color-muted);
  font-size: 10px;
}

.events-state-note.danger {
  color: var(--color-brand);
  background: var(--color-brand-soft);
}

.events-detail-grid,
.events-metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--color-border);
  border-left: 1px solid var(--color-border);
}

.events-detail-item,
.events-metric {
  min-width: 0;
  min-height: 42px;
  display: grid;
  align-content: center;
  padding: 4px 6px;
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  border-radius: 0;
  background: var(--color-surface);
}

.events-detail-item span,
.events-metric span {
  display: block;
  color: var(--color-muted);
  font-size: 8px;
  text-transform: uppercase;
}

.events-detail-item strong,
.events-metric strong {
  display: block;
  margin-top: 2px;
  color: var(--color-heading);
  font-size: 10.5px;
  overflow-wrap: anywhere;
}

.events-detail-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px;
}

.events-skeleton-row span,
.events-detail-skeleton span {
  display: block;
  min-height: 30px;
  border-radius: 0;
  background: linear-gradient(90deg, var(--color-surface-soft), var(--color-border), var(--color-surface-soft));
  background-size: 200% 100%;
  animation: eventsSkeleton 1.15s ease-in-out infinite;
}

.events-detail-skeleton {
  display: grid;
  gap: 6px;
}

.events-detail-skeleton span:first-child {
  min-height: 88px;
}

@keyframes eventsSkeleton {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

body:has(.events-modal:not([hidden])),
body:has(.events-token-dialog) {
  overflow: hidden;
}

.events-modal,
.events-token-dialog {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(8px, 2vw, 12px);
  overflow: hidden;
}

.events-token-dialog {
  z-index: 95;
}

.events-modal,
.events-modal *,
.events-token-dialog,
.events-token-dialog * {
  box-sizing: border-box;
}

.events-modal[hidden] {
  display: none;
}

.events-modal-backdrop,
.events-token-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15,17,21,.42);
}

.events-modal-panel {
  position: relative;
  width: min(880px, calc(100vw - 24px));
  height: min(82vh, 700px);
  max-height: 82vh;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
}

.events-modal-head {
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 6px 8px;
  border-bottom: 1px solid rgba(236,238,243,.85);
  background: var(--color-surface);
}

.events-modal-head .ds-kicker,
.events-token-head .ds-kicker {
  margin-bottom: 1px;
  font-size: 8px;
  line-height: 1;
}

.events-modal-head h2 {
  font-size: var(--font-size-1);
  line-height: 1.05;
}

.events-form {
  min-height: 0;
  display: grid;
  gap: 4px;
  padding: 5px 7px 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.events-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 6px;
}

.events-form-grid.compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.events-form-grid.compact-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.events-form-grid.compact-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.events-form-wide {
  grid-column: 1 / -1;
}

.events-field,
.events-form label {
  display: grid;
  gap: 2px;
}

.events-field label,
.events-form label,
.events-switch-grid label {
  color: var(--color-muted);
  font-size: 9px;
  font-weight: var(--font-weight-bold);
}

.events-form input,
.events-form select,
.events-form textarea {
  width: 100%;
  min-height: 27px;
  border: 1px solid var(--color-border);
  border-radius: 2px;
  background: var(--color-surface);
  color: var(--color-heading);
  font: inherit;
  font-size: 11px;
  padding: 3px 7px;
  transition: var(--transition-control);
}

.events-form input:focus,
.events-form select:focus,
.events-form textarea:focus,
.events-token-field input:focus {
  border-color: var(--color-brand);
  box-shadow: 0 0 0 2px var(--color-brand-soft);
  outline: 0;
}

.events-form input:disabled,
.events-form select:disabled,
.events-form textarea:disabled,
.events-switch-grid input[type="checkbox"]:disabled {
  cursor: not-allowed;
  opacity: .6;
}

.events-form textarea {
  min-height: 36px;
  resize: vertical;
}

.events-field.has-error input,
.events-field.has-error select,
.events-field.has-error textarea {
  border-color: var(--color-brand);
  background: var(--color-brand-soft);
}

.events-field small {
  min-height: 0;
  color: var(--color-brand);
  font-size: 8px;
  line-height: 1.05;
}

.events-form-section {
  display: grid;
  gap: 4px;
  padding: 5px 7px;
  border: 1px solid var(--color-border);
  border-radius: 0;
  background: var(--color-surface-soft);
  box-shadow: none;
}

.events-form-section h3 {
  font-size: 10px;
  line-height: 1;
}

.events-switch-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px 6px;
  align-items: stretch;
}

.events-switch-grid label {
  position: relative;
  width: 100%;
  min-width: 0;
  height: 24px;
  min-height: 24px;
  display: flex;
  align-items: center;
  padding: 0 6px 0 33px;
  border: 1px solid var(--color-border);
  border-radius: 2px;
  background: var(--color-surface);
  cursor: pointer;
  line-height: 1.1;
  overflow: hidden;
  text-overflow: ellipsis;
}

.events-switch-grid input[type="checkbox"] {
  position: absolute;
  left: 6px;
  width: 24px;
  height: 13px;
  min-height: 13px;
  margin: 0;
  padding: 0;
  appearance: none;
  border: 1px solid var(--color-border);
  border-radius: 2px;
  background: var(--color-soft-muted);
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease;
}

.events-switch-grid input[type="checkbox"]::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 7px;
  height: 7px;
  border-radius: 1px;
  background: var(--color-white);
  box-shadow: none;
  transition: transform .18s ease;
}

.events-switch-grid input[type="checkbox"]:checked {
  border-color: var(--color-brand);
  background: var(--color-brand);
}

.events-switch-grid input[type="checkbox"]:checked::after {
  transform: translateX(11px);
}

.events-form-error {
  position: absolute;
  top: 40px;
  right: 8px;
  z-index: 5;
  max-width: min(340px, calc(100% - 16px));
  margin: 0;
  padding: 6px 8px;
  border: 1px solid rgba(196,31,44,.28);
  border-radius: 2px;
  background: var(--color-surface);
  box-shadow: 0 8px 20px rgba(15,17,21,.08);
  color: var(--color-brand);
  font-size: 10.5px;
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
}

.events-form-error[hidden] {
  display: none !important;
}

.events-modal-actions {
  position: sticky;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  margin: 0 -7px;
  padding: 6px 7px;
  border-top: 1px solid rgba(236,238,243,.9);
  background: var(--color-surface);
}

.events-modal-actions .events-secondary-action,
.events-modal-actions .events-primary-action {
  height: 27px;
  border-radius: 2px;
}

.events-modal-actions .events-secondary-action {
  background: var(--color-surface-soft);
  color: var(--color-heading);
}

.events-modal-actions .events-primary-action {
  background: var(--color-brand);
  border-color: var(--color-brand);
  color: var(--color-white);
}

.events-token-panel {
  position: relative;
  width: min(420px, calc(100vw - 24px));
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--color-border);
  border-radius: 0;
  background: var(--color-surface);
  box-shadow: 0 18px 44px rgba(15,17,21,.16);
}

.events-token-head {
  display: flex;
  align-items: center;
  gap: 9px;
}

.events-token-head h2 {
  font-size: var(--font-size-2);
  line-height: 1.05;
}

.events-token-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--color-border);
  border-radius: 0;
  background: var(--color-surface-soft);
  color: var(--color-heading);
}

.events-token-field {
  display: grid;
  gap: 5px;
  color: var(--color-muted);
  font-size: 10px;
  font-weight: var(--font-weight-bold);
}

.events-token-field input {
  height: 32px;
  border: 1px solid var(--color-border);
  border-radius: 2px;
  background: var(--color-surface);
  color: var(--color-heading);
  font: inherit;
  font-size: 12px;
  padding: 0 9px;
}

.events-token-field small {
  min-height: 14px;
  color: var(--color-brand);
  font-size: 10px;
  line-height: 1.2;
}

.events-token-field small[hidden] {
  display: none !important;
}

.events-token-actions {
  display: flex;
  justify-content: flex-end;
  gap: 6px;
  padding-top: 8px;
  border-top: 1px solid var(--color-border);
}

.events-token-actions .events-secondary-action,
.events-token-actions .events-primary-action {
  height: 30px;
  border-radius: 2px;
}

@media (max-width: 1366px) {
  .events-layout {
    grid-template-columns: minmax(0, 74fr) minmax(260px, 26fr);
  }
  .events-table {
    min-width: 1500px;
  }
  .events-table th,
  .events-table td {
    padding-inline: 7px;
  }
}

@media (max-width: 1180px) {
  .events-layout {
    grid-template-columns: 1fr;
  }
  .events-table {
    min-width: 1450px;
  }
}

@media (max-width: 920px) {
  .events-shell {
    padding: 10px;
  }
  .events-header,
  .events-controls {
    grid-template-columns: 1fr;
  }
  .events-header {
    display: grid;
    padding: 10px;
  }
  .events-table {
    min-width: 1360px;
  }
  .events-form-grid,
  .events-form-grid.compact-three,
  .events-form-grid.compact-two,
  .events-switch-grid {
    grid-template-columns: 1fr 1fr;
  }
  .events-form-grid.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .events-detail-panel {
    position: static;
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .events-table {
    min-width: 1280px;
  }
  .events-modal-panel {
    width: min(100%, calc(100vw - 16px));
  }
  .events-form-grid,
  .events-form-grid.compact,
  .events-form-grid.compact-three,
  .events-form-grid.compact-two,
  .events-switch-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .events-shell {
    padding: 8px;
  }
  .events-detail-grid,
  .events-metric-grid,
  .events-detail-actions {
    grid-template-columns: 1fr;
  }
  .events-modal,
  .events-token-dialog {
    padding: 8px;
  }
  .events-modal-panel {
    height: 88vh;
    max-height: 88vh;
  }
  .events-header {
    padding: 9px;
  }
  .events-form-error {
    top: 40px;
    left: 8px;
    right: 8px;
    max-width: none;
  }
}

/* Checkboxes de seleccion multiple en la tabla de eventos: la regla global
   "input, select { width:100%; min-height:42px }" (forms.css) esta pensada
   para campos de texto y le pega tambien a estos checkboxes, agrandandolos
   y descuadrando la tabla. Los reseteamos a su tamano natural. */
.events-table input[type="checkbox"],
#selectAllEvents {
  width: 16px;
  min-height: 0;
  height: 16px;
  padding: 0;
  margin: 0;
  box-shadow: none;
  cursor: pointer;
}

/* Columna de checkboxes: oculta hasta que se activa el modo de seleccion
   (icono de basura), para no ensuciar la tabla el resto del tiempo. */
.events-table .select-col { display: none; }
.events-table.is-selecting .select-col { display: table-cell; }
