.stage-link {
    margin-left: 8px;
    font-size: 1rem;
    color: #0b6fb3;
    text-decoration: underline;
    cursor: pointer;
}

/* Modal */
.stage-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
    z-index: 999;
}

.stage-modal.show {
    display: flex;
}

.stage-modal-content {
    background: white;
    max-width: 520px;
    width: 100%;
    padding: 28px;
    border-radius: 12px;
    max-height: 85vh;
    overflow-y: auto;
}

/* Content Card */
.stage-info-card {
    background-color: #f5f5f5;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    padding: 20px;
}

.stage-info-card h3 {
    margin-top: 0;
}

.stage-info-card p:last-child {
    margin-bottom: 0;
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    float: right;
}