.column-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  justify-content: center;
}

.column-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: white;
  font-weight: bold;
}

.column-title {
  font-size: 24px;
  font-weight: bold;
}

/* Cores específicas */
.legitimate {
  border-left: 5px solid #38a169;
}

.legitimate .column-icon {
  background-color: #38a169;
}

.column-icon {
  background-color: #e53e3e;
}

.column-title {
  color: #e53e3e;
}

/* Caixas de URL */
.url-box {
  background-color: #f8f9fa;
  padding: 20px;
  margin-bottom: 20px;
  border-left: 4px solid;
  transition: transform 0.3s ease;
}

.url-box:hover {
  transform: translateY(-5px);
}

.legitimate .url-box {
  border-left-color: #38a169;
  background-color: #f0fff4;
}

.fraudulent .url-box {
  border-left-color: transparent;
  background-color: #fff5f5;
}

.url-box-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.legitimate .url-box-title {
  color: #38a169;
}
.url-display .highlight {
  user-select: none;
}

.fraudulent .url-box-title {
  color: #e53e3e;
}

/* Display de URL */
.url-display {
  font-family: 'Courier New', monospace;
  background-color: white;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  padding: 12px;
  margin-bottom: 15px;
  position: relative;
  font-size: 16px;
  word-break: break-all;
}

/* Indicador de segurança */
.security-indicator {
  display: inline-block;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
  margin-right: 8px;
}

.secure {
  background-color: #d4edda;
  color: #155724;
}

.insecure {
  background-color: #f8d7da;
  color: #721c24;
}

/* Destaque para partes importantes */
.highlight {
  position: relative;
  z-index: 1;
}

.highlight::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 40%;
  background-color: rgba(255, 255, 0, 0.3);
  z-index: -1;
}

/* Círculo de alerta */
.alert-circle {
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #e53e3e;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e53e3e;
  font-weight: bold;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Linha de alerta */
.alert-line {
  position: absolute;
  height: 2px;
  background-color: #e53e3e;
}

/* Lista de características */
.feature-list {
  list-style-type: none;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}

.feature-icon {
  margin-right: 10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
  font-size: 12px;
}

.legitimate .feature-icon {
  background-color: #38a169;
  color: white;
}

.fraudulent .feature-icon {
  background-color: #e53e3e;
  color: white;
}

/* Seção de dicas */
.tips-section {
  margin-top: 30px;
  background-color: #ebf8ff;
  border: 1px solid #bee3f8;
  border-radius: 8px;
  padding: 20px;
}

.tips-title {
  font-size: 20px;
  font-weight: bold;
  color: #2b6cb0;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.tips-title::before {
  content: '💡';
  margin-right: 10px;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tip-item {
  display: flex;
  align-items: flex-start;
}

.tip-number {
  width: 24px;
  height: 24px;
  background-color: #2b6cb0;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 10px;
  flex-shrink: 0;
}

/* Tooltip */
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted #666;
  cursor: help;
}

.tooltip .tooltip-text {
  visibility: hidden;
  width: 200px;
  background-color: #555;
  color: white;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -100px;
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 14px;
}

.tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

/* Destaque para protocolos */
.protocol-https {
  font-weight: bold;
  color: #38a169;
}

.protocol-http {
  font-weight: bold;
  color: #e53e3e;
}

.domain-name {
  font-weight: bold;
}

.column.fraudulent {
  max-width: fit-content;
  margin: 0 auto;
}

.alert-circle {
  left: 320px;
  top: -13px;
}
.feature-list span:last-child strong {
  color: #000099;
}

@media (max-width: 767.98px) {
  .alert-circle {
    left: 120px;
  }

  .column-title {
    font-size: 18px;
  }
}
