.get-code-btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background-color: #e11d48;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: opacity 0.2s ease, transform 0.2s ease;
    margin: 10px auto;
}
.get-code-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.get-code-btn.copied {
    background-color: #16a34a;
}
