/* Minimalistic Icons CSS */
.minimalistic-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 6px;
  vertical-align: middle;
  position: relative;
}

/* Save Icon */
.icon-save {
  background: #666;
  border-radius: 2px;
}

.icon-save::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  height: 2px;
  background: white;
  border-radius: 1px;
}

.icon-save::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 4px;
  width: 2px;
  height: 6px;
  background: white;
  border-radius: 1px;
}

/* Settings Icon */
.icon-settings {
  background: #666;
  border-radius: 50%;
}

.icon-settings::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.icon-settings::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border: 2px solid white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

/* Training Icon */
.icon-training {
  background: #666;
  border-radius: 2px;
}

.icon-training::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  height: 2px;
  background: white;
  border-radius: 1px;
}

.icon-training::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 2px;
  right: 2px;
  height: 2px;
  background: white;
  border-radius: 1px;
}

/* Management Icon */
.icon-management {
  background: #666;
  border-radius: 2px;
}

.icon-management::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  height: 2px;
  background: white;
  border-radius: 1px;
}

.icon-management::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 2px;
  right: 2px;
  height: 2px;
  background: white;
  border-radius: 1px;
}

/* Trash Icon */
.icon-trash {
  background: #666;
  border-radius: 2px;
}

.icon-trash::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  height: 2px;
  background: white;
  border-radius: 1px;
}

.icon-trash::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 4px;
  width: 4px;
  height: 6px;
  background: white;
  border-radius: 1px;
}

/* Copy Icon */
.icon-copy {
  background: #666;
  border-radius: 2px;
}

.icon-copy::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  height: 2px;
  background: white;
  border-radius: 1px;
}

.icon-copy::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 2px;
  right: 2px;
  height: 2px;
  background: white;
  border-radius: 1px;
}

/* Refresh Icon */
.icon-refresh {
  background: #666;
  border-radius: 50%;
}

.icon-refresh::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border: 2px solid white;
  border-radius: 50%;
  border-top-color: transparent;
  transform: translate(-50%, -50%);
}

/* Target Icon */
.icon-target {
  background: #666;
  border-radius: 50%;
}

.icon-target::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.icon-target::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border: 2px solid white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

/* Check Icon */
.icon-check {
  background: #666;
  border-radius: 2px;
}

.icon-check::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 3px;
  width: 6px;
  height: 3px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg);
}

/* X Icon */
.icon-x {
  background: #666;
  border-radius: 2px;
}

.icon-x::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 2px;
  background: white;
  transform: translate(-50%, -50%) rotate(45deg);
}

.icon-x::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 2px;
  background: white;
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* Warning Icon */
.icon-warning {
  background: #666;
  border-radius: 2px;
}

.icon-warning::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 50%;
  width: 2px;
  height: 8px;
  background: white;
  transform: translateX(-50%);
}

.icon-warning::after {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid white;
  transform: translateX(-50%);
}

/* Search Icon */
.icon-search {
  background: #666;
  border-radius: 50%;
}

.icon-search::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  border: 2px solid white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.icon-search::after {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  width: 4px;
  height: 2px;
  background: white;
  transform: rotate(45deg);
}

/* Plus Icon */
.icon-plus {
  background: #666;
  border-radius: 2px;
}

.icon-plus::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 2px;
  background: white;
  transform: translate(-50%, -50%);
}

.icon-plus::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 8px;
  background: white;
  transform: translate(-50%, -50%);
}

/* Magic Icon */
.icon-magic {
  background: #666;
  border-radius: 2px;
}

.icon-magic::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  height: 2px;
  background: white;
  border-radius: 1px;
}

.icon-magic::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 2px;
  right: 2px;
  height: 2px;
  background: white;
  border-radius: 1px;
}

/* Clean Icon */
.icon-clean {
  background: #666;
  border-radius: 2px;
}

.icon-clean::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  height: 2px;
  background: white;
  border-radius: 1px;
}

.icon-clean::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 2px;
  right: 2px;
  height: 2px;
  background: white;
  border-radius: 1px;
}

/* Advanced Icon */
.icon-advanced {
  background: #666;
  border-radius: 2px;
}

.icon-advanced::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  height: 2px;
  background: white;
  border-radius: 1px;
}

.icon-advanced::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 2px;
  right: 2px;
  height: 2px;
  background: white;
  border-radius: 1px;
} 