#flags-widget h4 {
  margin-bottom: 10px;
  font-size: 16px;
  color: #333;
}

.flags-control {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 14px;
  color: #555;
}

.flags-control input[type="checkbox"] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #2b9be3;
  border-radius: 4px;
  margin-right: 8px;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}

.flags-control input[type="checkbox"]:checked {
  background-color: #2b9be3;
  border-color: #2b9be3;
}

.flags-control input[type="checkbox"]:checked::after {
  content: "✔";
  color: white;
  font-size: 12px;
  position: absolute;
  top: 0;
  left: 3px;
}

.flags-control label {
  cursor: pointer;
}
