.multi-steps {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 0;
    margin: 0 -0.5rem;
    list-style: none;
    counter-reset: stepNum;
}

.multi-steps > li {
    counter-increment: stepNum;
    flex: 1 0 auto;                  /* grow evenly, but don’t shrink below content */
    min-width: 120px;                /* ensure tappable area */
    text-align: center;
    position: relative;
    color: #027f00;
    padding: 0 0.5rem;               /* horizontal gutter */
}

.multi-steps > li:before {
    content: "-";
    display: block;
    margin: 0 auto 0.5rem;
    background-color: #027f00;
    width: 2.25rem;
    height: 2.25rem;
    line-height: 2.25rem;
    text-align: center;
    font-weight: bold;
    border: 2px solid #027f00;
    border-radius: 50%;
    color: white;
    font-size: 1rem;
}

/* Progress bar */
.progress-bar {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 0.375rem;
    background-color: #e1e1e1;
    transform: translate(-50%, calc(50% + 1.75rem));
    z-index: -1;
}

.progress-bar--success {
    background-color: #027f00;
}

.progress-bar__bar {
    width: 100%;
    height: 100%;
    transition: width 0.5s ease-out;
}

/* Active/completed states */
.multi-steps > li.is-active:before {
    background-color: #fff;
    border-color: #027f00;
    color: #027f00;
    animation: pulse 2s infinite;
    content: "✓";
}

.multi-steps > li.is-active ~ li {
    color: #808080;
}

.multi-steps > li.is-active ~ li:before {
    background-color: #e1e1e1;
    border-color: #e1e1e1;
    color: #808080;
}

.multi-steps > li.is-complete {
    background-size: 200% 100%;
    background-position: right bottom;
    transition: background-position 0.5s ease-out;
}
.multi-steps > li.is-complete:before {
    content: "✓";
}

/* Pulse animation */
@keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(2,127,0,0.44); }
    100%{ box-shadow: 0 0 0 10px rgba(2,127,0,0); }
}

/* Hide scrollbar on WebKit but keep functionality */
.multi-steps::-webkit-scrollbar {
    height: 6px;
}
.multi-steps::-webkit-scrollbar-thumb {
    background-color: rgba(0,0,0,0.2);
    border-radius: 3px;
}

/* Smaller devices: wrap into two rows if needed */
@media (max-width: 576px) {
    .multi-steps {
        flex-wrap: wrap;
    }
    .multi-steps > li {
        flex: 0 0 50%;
        min-width: 50%;
        padding-bottom: 1.5rem;
    }
}



.bell-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.bell-notification:hover {
    background-color: #28a745 !important;
}

.bell-notification:hover .la-bell {
    color: white;
}

.bell-notification .la-bell {
    font-size: 24px;
    color: #333;
}

.bell-notification .badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background: red;
    color: white;
    font-size: 12px;
    border-radius: 50%;
    min-width: 20px;
    height: 20px;
    line-height: 20px;
    padding: 0;
    text-align: center;
    display: inline-block;
    font-weight: bold;
}

.blinking {
    animation: blinker 2s linear infinite;
}

@keyframes blinker {
    0%, 100% {
        background-color: transparent;
    }
    50% {
        background-color: rgba(40, 167, 69, 0.2);
        color: white;
    }
    /* Bootstrap zelena */
}

.rating_wrapper {
    display: flex;
    align-items: center;
    align-content: center;
    gap: 25px;
}

.star-rating {
    direction: rtl;
    font-size: 60px;
    display: inline-flex;
}

.star-rating-list {
    font-size: 22px;
}

.star-rating input {
    display: none;
}

.star-rating label {
    cursor: pointer;
    user-select: none;
}

.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
    color: gold;
}

.options-item {
    position: relative;
}


.options-item .remove-booking-option {
    position: absolute;
    top: 35px;
    right: -6px;
    width: 25px;
    height: 25px;
    line-height: 25px;
}

.always-visible {
    display: table-cell !important;
}

@media (max-width: 576px) {
    .always-visible {
        display: table-cell !important;
    }
}

.option-row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 15px;
}

.option-item {
    flex: 1 1 100%;
    display: flex;
    justify-content: flex-start;
    padding: 8px 0;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .option-row {
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 15px;
    }

    .option-item {
        flex: 0 1 45%;
        margin-bottom: 10px;
    }
}

@media (min-width: 992px) {
    .option-item {
        flex: 0 1 30%;
    }
}

.option-item strong {
    color: #333;
}

.option-item span {
    color: #555;
}

.dtr-control.cursor-pointer.d-inline {
    display: none!important;
}

.details-control i {
    font-size: 1.2rem;
}

.options-item .remove-booking-option {
    position: absolute;
    top: 35px;
    right: -6px;
    width: 25px;
    height: 25px;
    line-height: 25px;
}
