/* Vertical progress bar styles, hide inactive text */
.wc-progress-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    margin: 20px auto;
    list-style: none;
    padding: 0;
    max-width: 300px;
}

.wc-progress-step {
    position: relative;
    padding-left: 40px;
    font-weight: bold;
    color: #555;
}

.wc-progress-step.active {
    color: #fff;
}

.wc-progress-step::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.4em;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ccc;
    border: 3px solid #ccc;
}

.wc-progress-step.completed::before {
    background: #ff97cd;
    border-color: #ff97cd;
}

.wc-progress-step.active::before {
    background: #fff;
    border: 3px solid #ff97cd;
}

.wc-progress-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 9px;
    top: 28px;
    width: 2px;
    height: calc(100% - 28px);
    background: #ccc;
}

.wc-progress-step.completed:not(:last-child)::after {
    background: #ff97cd;
}

/* Copy button styling */
.gp-copy-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 18px;
    background: #ff97cd !important;
    color: #fff !important;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
}
.gp-copy-btn:hover {
    background: #e278b4 !important;
}

/* Toast notification */
.gp-toast {
    visibility: hidden;
    min-width: 200px;
    margin-left: -100px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 4px;
    padding: 10px;
    position: fixed;
    z-index: 9999;
    left: 50%;
    bottom: 30px;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.5s, visibility 0.5s;
}
.gp-toast.show {
    visibility: visible;
    opacity: 1;
}
