.reason-container {
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    justify-content: center;
    align-items: center;
    display: flex;
    width: 100%;
}

.reason-text {
    display: inline-block;
    white-space: nowrap;
    transition: transform 0.3s;
    font-size: 0.8rem;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%; /* lub inna szerokość, np. 200px */
}

@media (max-width: 892px) {
    .reason-text {
        max-width: 66px !important;
    }
}


@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

[v-cloak] {
    display: none;
}

.custom-checkbox {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    position: relative;
    font-size: 16px;
}

/* Ukryj oryginalny checkbox */
.custom-checkbox input {
    opacity: 0;
    position: absolute;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Styl kwadracika */
.custom-checkbox .checkmark {
    display: inline-block;
    height: 19px;
    width: 19px;
    background-color: #fff;
    border: 1px solid #007BFF; /* niebieska ramka */
    border-radius: 4px;
    box-sizing: border-box;
    transition: background-color 0.2s, border-color 0.2s;
    margin-right: 8px;
}

/* Po najechaniu */
.custom-checkbox:hover .checkmark {
    border-color: #0056b3; /* ciemniejszy niebieski */
}

/* Gdy zaznaczone */
.custom-checkbox input:checked + .checkmark {
    background-color: #007BFF; /* niebieskie tło */
    border-color: #007BFF;
}

/* Znak "ptaszka" */
.custom-checkbox .checkmark::after {
    content: "";
    position: absolute;
    display: none;
}

/* Pokaż ptaszek po zaznaczeniu */
.custom-checkbox input:checked + .checkmark::after {
    display: block;
    left: 7px;
    top: 3px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

#registrationModal h2, #registrationModal h3, #registrationModal h5 {
    color: black !important;
}