/* Text Modal Styles */

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.modal-dialog {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: var(--spacing-lg);
  max-width: 800px;
  max-height: 80vh;
  overflow-y: auto;
  z-index: 1;
  margin: var(--spacing-md);
}

.modal-title {
  margin-bottom: var(--spacing-sm);
  padding-right: var(--spacing-xl);
}

.modal-meta {
  color: var(--muted-text);
  margin-bottom: var(--spacing-md);
  padding-bottom: var(--spacing-md);
  border-bottom: 1px solid var(--border-color);
}

.modal-content-text {
  white-space: pre-wrap;
  line-height: 1.8;
  color: var(--dark-text);
}
