.country-checkbox-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* desktop: 3 per row */
  gap: 8px 12px;
  max-height: 260px;
  overflow-y: auto;
  padding: 8px;
  background: #fff;
}

/* Tablet */
@media (max-width: 992px) {
  .country-checkbox-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .country-checkbox-list {
    grid-template-columns: repeat(2, 1fr); /* mobile: 2 per row */
  }
}

.country-checkbox-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
}

.country-checkbox-item:hover {
  background-color: #f1f5ff;
}

.country-checkbox-item input {
  margin: 0;
  flex-shrink: 0;
}

.country-checkbox-item span {
  overflow: hidden;
  text-overflow: ellipsis;
}
