/* Clipboard toast notification styles */
.copy-toast {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 10000;
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
    font-weight: 500;
    direction: rtl;
}

.copy-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.copy-toast i {
    margin-left: 6px;
}

/* For left-to-right languages */
html:not([dir="rtl"]) .copy-toast {
    direction: ltr;
}

html:not([dir="rtl"]) .copy-toast i {
    margin-left: 0;
    margin-right: 6px;
}
