/* CSS specifically for Base64 Converter tool */

.action-buttons-row {
  display: flex;
  gap: 1rem;
}

.half-width-btn {
  flex: 1;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid var(--border-color) !important;
  color: var(--text-main) !important;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1) !important;
}

.divider-line {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 1rem 0;
  width: 100%;
}

.empty-state-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-family: var(--font-main);
  text-align: center;
  user-select: none;
}

.base64-preview-box #preview-container-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  overflow: auto;
  padding: 1rem;
}

.base64-preview-box img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.08);
}
