/*
 * CHECKBOXES
 * Stiluri pentru checkbox-uri custom
 */

.styled-checkbox {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 22px;
  height: 22px;
  border: 2px solid #e1b922;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s;
  vertical-align: middle;
}

.styled-checkbox:checked {
  background-color: #d12627;
  border-color: #d12627;
  box-shadow: 0 2px 5px rgba(209, 38, 39, 0.3);
}

.styled-checkbox:checked::before {
  content: '✔';
  color: white;
  font-size: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.styled-checkbox:disabled {
  background-color: #ccc;
  border-color: #aaa;
  cursor: not-allowed;
}

.styled-checkbox:disabled:checked {
  background-color: #28a745;
  border-color: #28a745;
}

.styled-checkbox:disabled:checked::before {
  content: '✔';
  color: white;
  font-size: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.styled-checkbox:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(209, 38, 39, 0.1);
}
