.asgard-portal {
  max-width: 480px;
  margin: 0 auto;
  font-family: 'Segoe UI', sans-serif;
  color: #2c3e50;
  padding: 20px;
}

.asgard-portal h3,
.asgard-portal h4 {
  margin-top: 24px;
  color: #1a1a1a;
  font-size: 1.25rem;
}

.asgard-portal input,
.asgard-portal textarea,
.asgard-portal button {
  width: 100%;
  margin-top: 8px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  box-sizing: border-box;
}

.asgard-portal button {
  background-color: #4a90e2;
  color: white;
  border: none;
  margin-top: 12px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.asgard-portal button:hover {
  background-color: #3b7cc4;
}

#asgard-status {
  margin-top: 16px;
  font-size: 0.9rem;
  color: green;
}

.asgard-photo-preview img {
  width: 100px;
  border-radius: 50%;
  margin-top: 10px;
}

.asgard-danger button {
  background-color: #e74c3c !important;
  color: white !important;
}

.asgard-danger button:hover {
  background-color: #c0392b !important;
}

@media screen and (max-width: 500px) {
  .asgard-portal {
    padding: 12px;
  }

  .asgard-portal button {
    padding: 10px;
    font-size: 15px;
  }
  input, textarea {
  color: #000;
  caret-color: #000;
  background-color: #fff;
}
.asgard-danger-zone {
  margin-top: 30px;
  padding: 20px;
  background: #fff5f5;
  border: 1px solid #f1c0c0;
  border-radius: 8px;
  text-align: center;
}

.asgard-danger-zone h4 {
  color: #cc0000;
  margin-bottom: 10px;
}

.asgard-danger-zone p {
  color: #991f1f;
  font-size: 14px;
  margin-bottom: 16px;
}

.asgard-danger-btn {
  background-color: #e74c3c;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.25s ease;
}

.asgard-danger-btn:hover {
  background-color: #c0392b;
}



.asgard-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: none; /* Hidden by default */
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 9999;
}

.asgard-modal-overlay.active {
  display: flex;
}

.asgard-modal-content {
  background: white;
  padding: 0;
  border-radius: 12px;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.2);
  max-width: 400px;
  width: 90%;
  font-family: 'Segoe UI', sans-serif;
}

.asgard-modal-box {
  padding: 30px;
  text-align: center;
}

.asgard-modal-box h3 {
  color: #cc0000;
  margin-bottom: 12px;
}

.asgard-modal-box p {
  font-size: 15px;
  margin-bottom: 20px;
}

.asgard-modal-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.asgard-modal-actions button {
  padding: 10px 18px;
  font-size: 14px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}

.asgard-danger-btn {
  background-color: #e74c3c;
  color: white;
}

.asgard-modal-actions button:not(.asgard-danger-btn) {
  background-color: #ccc;
  color: #333;
}
}
