/* Stil für den 'Copy'-Button */
.frontend-copy-button {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    padding: 3px 5px;
    background-color: #ddd;
    color: #000;
    border: 1px solid #000;
    border-radius: 0;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    transition: background-color 0.3s, border-color 0.3s;
}

.frontend-copy-button:hover,
.frontend-copy-button.copying {
    background-color: red;
    border-color: red;
    color: white;
}

.copy-all-button {
    position: fixed;
    top: 40px;
    right: 1px;
    z-index: 9999;
    padding: 5px 5px;
    background-color: #ddd;
    color: #000;
    border: 1px solid #000;
    border-radius: 0px;
    cursor: pointer;
    font-size: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.copy-all-button:hover,
.copy-all-button.copying {
    background-color: red;
    border-color: #f00;
    color: white;
    transform: scale(1.05);
}

.blinking {
    animation: blink 0.5s ease-in-out infinite;
    border: 2px solid red;
    color: white;
    background-color: FFC3C3; 
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}
