.ssl-result {
  margin-top: 2rem;
  padding: 2rem;
  border-radius: 15px;
  background: #f8f9fa;
  border: 2px solid #e9ecef;
}

.ssl-valid {
  border-left: 5px solid #27ae60;
  background: #d4edda;
}

.ssl-invalid {
  border-left: 5px solid #e74c3c;
  background: #fadbd8;
}

.ssl-warning {
  border-left: 5px solid #f39c12;
  background: #fef5e7;
}

.ssl-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  .ssl-info {
    grid-template-columns: 1fr;
  }
}

.ssl-info-item {
  padding: 16px;
  background: white;
  border-radius: 12px;
  border: 1.5px solid #e9ecef;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.ssl-info-label {
  font-weight: 600;
  color: #2c3e50;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.ssl-info-value {
  color: #34495e;
  word-break: break-word;
  font-size: 1rem;
}

.status-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  margin-top: 12px;
  font-size: 0.95rem;
}

.status-valid {
  background: #27ae60;
  color: white;
}

.status-invalid {
  background: #e74c3c;
  color: white;
}

.status-warning {
  background: #f39c12;
  color: white;
}

.ssl-result h3 {
  margin: 0 0 12px 0;
  color: #2c3e50;
  font-size: 1.3rem;
}
