.code-container {
    position: relative;
    margin-top: 1rem;
}

.copy-button {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    border: none;
    background: rgba(0, 0, 0, 0.05);
    cursor: pointer;
    padding: 0.4rem;
    font-size: 1rem;
    color: #6c757d;
    transition: background-color 0.2s, color 0.2s;
    border-radius: 6px;
}

.copy-button:hover {
    background-color: rgba(0, 0, 0, 0.15);
    color: #000;
}

pre {
    overflow-x: auto;
}

@keyframes pop {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

.fa-check {
    animation: pop 0.3s ease;
}