.dns-card {
  background: #ffffff;
  border-radius: 16px;
  margin: 15px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  font-family: "Inter", sans-serif;
  color: #0f1c2e;
  width: 100%;
}

.dns-card-header {
  padding: 15px;
  background: #007aff;
  color: white;
  cursor: pointer;
  border-radius: 16px 16px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 600;
}

.dns-card-body {
  padding: 15px;
  display: none;
}

.dns-card-body.visible {
  display: block;
}

.toggle-icon {
  font-weight: bold;
}

.dmarc-ai-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 15px;
}

.dmarc-ai-form input[type="text"] {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: larger;
}

.orange-btn {
  background: #FC7D00;
  color: white;
  font-weight: bold;
  font-size: larger;
  border: none;
  padding: 12px 18px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.orange-btn:hover {
  background: #e86f00;
}

.auto-selector {
  display: flex;
  align-items: center;
  gap: 5px;
}

.score-container {
  background: #e9edf5;
  border-radius: 8px;
  height: 20px;
  overflow: hidden;
  margin-bottom: 10px;
}

.score-bar {
  height: 100%;
  border-radius: 8px;
  transition: width 0.6s ease;
}

.score-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.score-summary-row div {
  flex: 1 1 48%;
}

@media (max-width: 600px) {
  .score-summary-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .score-summary-row div {
    flex: 1 1 100%;
    margin-bottom: 5px;
  }
}

.feedback-box {
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 10px;
}

.details ul {
  list-style: disc;
  margin-left: 20px;
}
