.copy-container {
    display: flex;
    align-items: center;
    gap: 3px;
}

.copy-icon {
    position: relative;
    width: 14px;
    height: 14px;
    cursor: pointer;
    margin-left: 5px; /* Juster mellemrum efter behov */
}

.copy-icon::before, .copy-icon::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 10px;
    border: 1px solid #888;
    background-color: #efefef;
    border-radius: 2px;
	margin-top: 4px;
}

.copy-icon::before {
    top: 0px;
    left: 0px;
}

.copy-icon::after {
    top: 4px;
    left: 4px;
}

.copy-icon:hover::before, .copy-icon:hover::after {
    background-color: #e0e0e0;
    border-color: #222;
}