#cwd .cwd-checkbox {
  align-items: center;
  color: #333;
  cursor: pointer;
  display: inline-flex;
  font-size: 1.2rem;
  line-height: 1.3;
  transition: color 0.3s;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
#cwd .cwd-checkbox input[type='checkbox'] {
  display: none;
}
#cwd .cwd-checkbox .checkmark {
  align-items: center;
  border: 2px solid #333;
  border-radius: 4px;
  display: flex;
  height: 24px;
  justify-content: center;
  margin-right: 10px;
  transform-style: preserve-3d;
  transition: background-color 0.3s, border-color 0.3s, transform 0.3s;
  width: 24px;
}
#cwd .cwd-checkbox .checkmark:before {
  color: transparent;
  content: '✓';
  font-size: 16px;
  transition: color 0.3s, transform 0.3s;
}
#cwd .cwd-checkbox input[type='checkbox']:checked + .checkmark {
  background-color: #333;
  border-color: #333;
}
#cwd .cwd-checkbox input[type='checkbox']:checked + .checkmark:before {
  color: #fff;
}
#cwd .cwd-checkbox:hover {
  color: #666;
}
#cwd .cwd-checkbox:hover .checkmark {
  background-color: #f0f0f0;
  border-color: #666;
  transform: scale(1.05);
}
#cwd .cwd-checkbox input[type='checkbox']:focus + .checkmark {
  box-shadow: 0 0 3px 2px rgba(0, 0, 0, 0.2);
  outline: none;
}
#cwd .cwd-checkbox .checkmark,
#cwd .cwd-checkbox input[type='checkbox']:checked + .checkmark {
  transition: background-color 0.3s, border-color 1.3s, color 1.3s, transform 0.3s;
}
#cwd .ct-search-results .ct-archive-container {
  margin-top: 3rem;
}
#cwd .ct-search-types {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 5rem;
}
#cwd .ct-search-type {
  position: relative;
}
#cwd .ct-search-type label {
  align-items: center;
  background: #e9e9e9;
  border-radius: 2rem;
  cursor: pointer;
  display: flex;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}
#cwd .ct-search-type.active label {
  background: #c9c9c9;
  color: #fff;
}
#cwd .ct-search-type.active label .radio-circle,
#cwd .ct-search-type:hover label .radio-circle {
  background: #000;
  border-color: #fff;
}
#cwd .ct-search-type.active label .radio-circle:after {
  background: #fff;
  border-radius: 50%;
  content: '';
  height: 6px;
  left: 3px;
  position: absolute;
  top: 3px;
  width: 6px;
}
#cwd .ct-search-type:hover label {
  background: #000;
  color: #fff;
}
#cwd .radio-circle {
  border: 1px solid #5f5f5f;
  border-radius: 50%;
  display: inline-block;
  height: 10px;
  margin-right: 8px;
  position: relative;
  transition: all 0.3s ease;
  width: 10px;
}
#cwd .radio-label {
  font-weight: 500;
}
