.text-center{
    text-align: center !important;
}

.text-sm {
    font-size: 0.875rem;
    line-height: calc(1.25 / 0.75);
}

.text-xs{
    font-size: 0.75rem;
    line-height: calc(1 / 0.75);
}

.btn-action.activate { background: #4fff30; }

.btn-activate-modal {
  background: #FF3B30;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-edit-modal.sm, .btn-activate-modal.sm {
    padding: 6px 12px;
    font-size: 0.75rem;
}

.lang-panel { display: none; }
.lang-panel.active { display: block; }

/* service image preview */
.image-preview-container{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.image-preview{
    position: relative;
    width: 100px;
    height: 100px;
}

.image-preview img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.image-remove{
    position: absolute;
    top: -5px;
    right: -5px;
    background: red;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
}

.dot-inactive {
  width: 6px;
  height: 6px;
  background: #af4c4c;
  border-radius: 50%;
}

.menu-item .left img {
  width: 20px;
  text-align: center;
  font-size: 16px;
  color: #8E8E93;
}

/* Promotion add prizes */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 25px;
    height: 13px;
}

.toggle-switch input {
    display: none;
}

.slider {
    position: absolute;
    cursor: pointer;
    background-color: #ccc;
    border-radius: 26px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: 0.3s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 7px;
    width: 7px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    border-radius: 50%;
    transition: 0.3s;
}

input:checked + .slider {
    background-color: #545554;
}

input:checked + .slider:before {
    transform: translateX(12px);
}

#prizes-container, #offers-container{
    background-color: #F5F2EB;
    padding: 20px;
    border-radius: 20px;
    display: none;
}

#prizes-container p, #offers-container p{
    margin-top: 10px;
    font-weight: bold;
}

.prizes-item, .offers-item {
    margin-bottom: 20px;
}