/**
 * CookieKit Admin CSS
 */

.consent-style-options {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.consent-style-options label {
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.consent-style-options label.selected,
.theme-options label.selected {
  border-color: #2271b1;
  background: #f0f6ff;
}

.consent-style-option-illustration {
  width: 100px;
  height: 80px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  text-align: center;
}

.theme-options {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.theme-options label {
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.theme-preview {
  width: 120px;
  height: 80px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
}

.theme-preview.light {
  background: #ffffff;
  color: #333333;
}

.theme-preview.dark {
  background: #333333;
  color: #ffffff;
}

.cookiekit-code-block {
  background: #f5f5f5;
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 4px;
  font-family: monospace;
  cursor: pointer;
  margin-bottom: 20px;
  white-space: pre-wrap;
  word-break: break-all;
}

.cookiekit-import-container {
  margin-top: 20px;
  padding: 15px;
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.cookiekit-selected-file {
  margin-top: 10px;
  font-style: italic;
}
