/* Estilos básicos del plugin */

.narrativa-div-editable {
    border: 2px dashed #007cba;
    padding: 10px;
    min-height: 60px;
    background: #f8f8f8;
    cursor: text;
    transition: background 0.2s, border-color 0.2s;
}

.narrativa-div-editable:focus {
    background: #fff;
    border-color: #005a9e;
    outline: none;
}

.narrativa-div-msg {
    font-size: 0.9em;
    color: #28a745;
    display: none;
    margin-top: 5px;
}
.narrativa-llista-tipus {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 2rem 1rem;
}

.narrativa-llista-tipus .arxiu {
    flex: 1 1 calc(33.333% - 1rem); /* 3 columnes amb separació */
    max-width: calc(33.333% - 1rem);
    border: 1px solid #ddd;
    padding: 1rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: box-shadow 0.2s ease;
}
.arxiu-accions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;

  justify-content: space-around;
}

/*.arxiu-accions .icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #28a745; 
    border-radius: 50%;
    color: white;
    font-size: 20px;
}*/


.arxiu-accions .nou-arxiu {
  
    padding: 0.5rem 0.75rem;
   
    cursor: pointer;
    font-weight: bold;
   
}

.arxiu-accions .nou-arxiu:hover {
    text-decoration: underline;
}

.arxiu-accions .iconet {
    width: 24px;
    height: 24px;
}







/* Responsive: només 1 columna en pantalles petites */
@media (max-width: 768px) {
    .narrativa-llista-tipus .arxiu {
        flex: 1 1 100%;
        max-width: 100%;
    }
}
