.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  backdrop-filter: blur(4px);
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal {
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.closeButton {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: #666;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 10;
}

.closeButton:hover {
  background: white;
  color: #BC526F;
  transform: rotate(90deg);
}

.header {
  padding: 2rem 2rem 1.5rem;
  background: linear-gradient(135deg, #667eea 0%, #BC526F 100%);
  border-radius: 20px 20px 0 0;
}

.title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin: 0;
  padding-right: 2rem;
}

.content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #718096;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.value {
  font-size: 1.125rem;
  color: #2d3748;
  font-weight: 500;
  padding: 0.75rem;
  background: #f8f9fa;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .modal {
    max-width: 95%;
    border-radius: 16px;
  }

  .header {
    padding: 1.5rem 1.5rem 1rem;
    border-radius: 16px 16px 0 0;
  }

  .title {
    font-size: 1.25rem;
  }

  .content {
    padding: 1.5rem;
    gap: 1.25rem;
  }

  .value {
    font-size: 1rem;
  }
}
