.copy-text {
    position: relative;
    cursor: pointer;
    padding-right: 1.5rem;
    /* Space for the icon */
    display: inline-flex;
    align-items: center;
}
.copy-text::after {
    content: "\f328";
    /* Unicode for FontAwesome clipboard icon */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    /* Ensures solid icon */
    position: absolute;
    right: 0;
    color: #6c757d;
    /* Gray color */
    font-size: 1rem;
    transition: color 0.2s ease-in-out;
}
.copy-text.copied::after {
    content: "\f00c";
    /* Unicode for FontAwesome check icon */
    color: #28a745;
    /* Green color when copied */
}
.disabled-link {
    pointer-events: none;
    /* Disables click */
    cursor: not-allowed;
}