#loading-spinner {
    height: 100vh;
    text-align: center;
    justify-content: center;
    align-items: center;
}
.grid-column {
    display: grid;
    grid-template-columns: 20rem;
    gap: 0.5rem;
    padding: 1rem;
    justify-content: center
}

/* Establece el ancho del toast*/
.custom-toast {
    width: 18rem !important; 
}
.custom-btn{
    width: 5.3rem;
}
/* Aņadir correos en copia */
#emailWrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 5px;
    min-height: 40px;
}

#emailInput {
    flex-grow: 1;
    border: none;
    outline: none;
    font-size: 14px;
    min-width: 100px;
}

.email-chip {
    display: flex;
    align-items: center;
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 5px 10px;
    font-size: 14px;
    color: #333;
}

    .email-chip .remove-button {
        margin-left: 8px;
        background-color: transparent;
        border: none;
        color: #ff4d4d;
        cursor: pointer;
        font-size: 14px;
        font-weight: bold;
    }

        .email-chip .remove-button:hover {
            color: #e60000;
        }

#addEmailButton {
    margin-left: 10px;
    padding: 5px 10px;
}


/* Listado de archivos cargados */
#file-list {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    padding: 5px 0;
}

.file-item {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding-left: 0.5rem;
    display: flex;
    align-items: center;
}

.file-name {
    margin-right: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 150px; 
}
.file-item .remove-file {
   
    background-color: transparent;
    border: none;
    color: #ff4d4d;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
}

    .file-item .remove-file:hover {
        color: #e60000;
    }