.page-navigation {
    margin-top: 20px;
    margin-bottom: 20px;
}

.custom-button-outline {
    color: #49C913;
    border: 1px solid #49C913;
    background-color: transparent;
    transition: all 0.3s ease;
}

.custom-button-outline:hover {
    color: #000;
    background-color: #49C913;
    border-color: #49C913;
}

.navigation-btn {
    min-width: 120px;
    border-radius: 30px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(73, 201, 19, 0.2);
    padding: 10px 20px;
}

.navigation-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(73, 201, 19, 0.3);
}

.navigation-btn-placeholder {
    min-width: 120px;
}

.step-indicator {
    margin-bottom: 20px;
    padding: 10px 0;
    width: 100%;
}

.step-indicator .step-container {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
}

.step-indicator .step {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: #333;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 2px;
    font-size: 12px;
    flex-shrink: 0;
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease;
}

.step-indicator .step.active {
    background-color: #74ff23;
    color: #000;
    box-shadow: 0 0 8px rgba(116, 255, 35, 0.7);
    transform: scale(1.1);
}

.step-indicator .step-line {
    height: 2px;
    width: 20px;
    background-color: #333;
    flex-shrink: 0;
    margin: 0 2px;
    transition: background-color 0.3s ease;
}

.step-indicator .step-line.active {
    background-color: #74ff23;
}

/* Стили для кликабельных шагов */
.step-indicator .step-link {
    display: flex;
    text-decoration: none;
    color: inherit;
}

.step-indicator .step:hover {
    transform: scale(1.15);
    box-shadow: 0 0 10px rgba(116, 255, 35, 0.5);
}

/* Стилизация контейнера индикатора шагов */
.step-container-wrapper {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 15px 5px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 1px solid rgba(116, 255, 35, 0.1);
    text-align: center;
}

.step-container-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(116, 255, 35, 0.05), transparent);
    animation: shimmer 2s infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}
