/* Base64 Encoder/Decoder - Tool-specific styles */
@import "../common.css";

/* Status Indicator */
.status-indicator {
  font-size: 0.75rem;
  color: var(--text-secondary);
  min-height: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.status-indicator.detected {
  color: var(--success-color);
  font-weight: 600;
}

.status-indicator.detected::before {
  content: '✓';
  display: inline-block;
  color: var(--success-color);
  font-size: 1rem;
}

/* Result Header */
.result-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Textarea sizing */
textarea#result-text {
  resize: both;
  min-height: 100px;
  max-height: 600px;
}

/* Info Card */
.info-card {
  background-color: rgba(56, 189, 248, 0.05);
  border: 1px solid rgba(56, 189, 248, 0.2);
}

[data-theme="light"] .info-card {
  background-color: rgba(3, 105, 161, 0.05);
  border-color: rgba(3, 105, 161, 0.2);
}

.info-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.info-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0 0 0.75rem 0;
}

.info-card ul {
  margin: 0;
  padding-left: 1.5rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.8;
}

.info-card li {
  margin-bottom: 0.25rem;
}
