/* Логика работы стрелок на вакансиях*/
.arrows-container {
    position: absolute;
    width: 100%;
    height: 500px;
}

.scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    cursor: pointer;
}

.scroll-arrow-left {
    left: 25px;
}

.scroll-arrow-right {
    right: 25px;
}

.arrow-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: opacity 0.3s ease;
    box-shadow:0px 0px 10px rgba(0,0,0,0.2);
    border-radius: 50px;
    height: 50px;
}

.arrow-btn:hover svg rect {
    fill: #fbb900;
    fill-opacity: 1;
}
.arrow-btn:hover svg path {
    stroke: #ffffff;
    stroke-width: 1;
}

/* Скрываем стандартный скроллбар */
.vacancies-scroll-wrapper::-webkit-scrollbar {
    display: none;
}

/* Для мобильных устройств - скрывать стрелки на мобильных */
@media (max-width: 768px) {
    .scroll-arrow {
        display: none !important;
    }

    .vacancies-scroll-wrapper {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
    }
}

/* Стили для чекбокса в анкете */
.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 10px;
}

.custom-checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #ccc;
    border-radius: 3px;
    outline: none;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}

.custom-checkbox:checked {
    background-color: #007bff;
    border-color: #007bff;
}

.custom-checkbox:checked::after {
    content: "✓";
    position: absolute;
    color: white;
    font-size: 14px;
    font-weight: bold;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.custom-checkbox:hover {
    border-color: #007bff;
}



