#copy-button {
    display: inline-block;
    align-items: center;
    justify-content: center;
    background-color: #32830a;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 20px;
    height: 32px;
    width: 32px;
}

.copy-url-popup {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px;
    border-radius: 5px;
    z-index: 9999;
    text-align: center;
}

.arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(0, 0, 0, 0.8);
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
}
