.korespondencja-section .prywatna {
    color: gray;
}

.korespondencja-section .publiczna {
    color: brown;
}

.korespondencja-section .nieprzeczytana {
    font-weight: bold;
}
.korespondencja-section .action-link{
    text-decoration: underline;
}


/*
.htmx-request.htmx-loading-overlay {
    background: gray;
    pointer-events: none;
    z-index: 1000;
    opacity: 20%;
}*/

.collapsed-messages-wrapper {
    position: relative;
    margin-bottom: 10px;
}
.collapsed-messages-container {
    max-height: 15px;
    overflow: hidden;
    mask-image: linear-gradient(
            to bottom,
            rgba(0,0,0,1) 75%,
            rgba(0,0,0,0) 100%
    );

}

.korespondencja-section {
    min-height: 52px;
}

.dropzone {
    border: 2px dashed #888;
    padding: 2rem;
    text-align: center;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: background 0.2s;
}
.dropzone.hover {
    background: rgba(0, 0, 0, 0.05);
}

.file-list {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
    font-size: 1.2rem;
}
.file-list li {
    margin-bottom: .25rem;
}
.remove-file {
    background: none;
    border: none;
    color: #c00;
    font-weight: bold;
    margin-left: .5rem;
    cursor: pointer;
}
.remove-file:hover {
    color: #f00;
}
.placeholder.hidden {
    display: none;
}