/* Styles pour l'envoi de pièces jointes */
.file-preview-area {
    padding: 12px;
    background: white;
    border-radius: 8px;
    margin-bottom: 12px;
    border: 1px solid rgb(231, 227, 218);
}

.file-preview-content {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.file-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.file-info i {
    font-size: 24px;
    color: #3b82f6;
}

.file-info span {
    font-size: 14px;
    color: rgb(29, 37, 48);
}

#fileSize {
    font-size: 12px;
    color: rgb(107, 114, 128);
}

.remove-file-btn {
    background: #ef4444;
    color: white;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.remove-file-btn:hover {
    background: #dc2626;
}

