/* Correction des styles pour le pastebin */

/* Correction pour le textarea */
.paste-textarea {
    background-color: white !important;
    color: #333 !important;
    position: relative;
    background-image: none !important;
    resize: vertical; /* Permettre le redimensionnement vertical via le navigateur */
    min-height: 200px;
}

/* Ajouter un watermark subtil au lieu d'une image de fond */
.paste-textarea::after {
    content: "";
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    opacity: 0.05;
    background-image: none;
    pointer-events: none;
}

/* Style pour le bouton de soumission */
#submit-btn .icon {
    margin-right: 0.5rem;
}

/* Notification animée */
.notification-animated {
    animation: slideInRight 0.3s forwards;
}

@keyframes slideInRight {
    from { 
        transform: translateX(100%);
        opacity: 0;
    }
    to { 
        transform: translateX(0);
        opacity: 1;
    }
}

/* Assurer que les classes hidden fonctionnent correctement */
.hidden {
    display: none !important;
}

/* Correction pour les boutons */
.paste-actions .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Amélioration du contraste pour meilleure lisibilité */
.paste-textarea::placeholder {
    color: #aaa;
}

/* Amélioration de l'effet au survol */
.paste-content {
    cursor: pointer;
    position: relative;
}

.paste-content:hover::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(62, 142, 208, 0.05);
    pointer-events: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}
