.contact-list-empty {
    padding: 40px;
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
}




.recipient-tag {
    display: inline-flex;
      margin-bottom: .5rem;
      margin-right: .5rem;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
}

.recipient-tag-content {
   padding: .45em .45em .45em .9em;
     overflow: hidden;
     text-overflow: ellipsis;
     white-space: nowrap;
     border-radius: 10rem;
     display: inline-flex;
     font-size: 85%;
     line-height: 1;
     text-align: center;
     align-items: center;
     gap: .25rem;
     color: white;
   background-color: var(--primary);
}



.recipient-tag-remove {
    background: rgba(255,255,255,0.3);
    border: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    padding: 0;
    font-size: 12px;
    line-height: 1;
}

.recipient-tag-remove:hover {
    background: rgba(255,255,255,0.5);
}

.recipient-input {
    flex: 1;
    border: none;
    outline: none;
    min-width: 200px;
    font-size: 14px;
    padding: 4px;
}

/* Contact List */
.contact-list-wrapper {
    margin-top: 12px;
}

.contact-list {

    border-radius: 8px;
    max-height: 350px;
    overflow-y: auto;

}

.contact-section-header {
    padding: 10px 14px;

    background-color: var(--card-background);
    position: sticky;
    top: 0;
    z-index: 10;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    cursor: pointer;
    transition: all 0.15s;
    margin-bottom: 2px;

}

.contact-item:last-child {
    border-bottom: none;
}


.contact-item.selected {
    background-color: #6f757e14;
    border-radius: var(--border-radius);
}


.contact-info {
    flex-grow: 1;
    min-width: 0;
}

.contact-check {
    color: var(--primary);
    font-size: 18px;
    flex-shrink: 0;
}



/* kołko */
.upload-circle-wrapper {
    position: relative;
    display: inline-block;
    transition: all 1s ease;
}

.upload-progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#upload_progress_circle {
    stroke-dasharray: 326.73; /* 2 * PI * 52 */
    stroke-dashoffset: 326.73;
    transition: stroke-dashoffset 1s ease-out; /* <-- DODAJ TO */
}


.btn-group-types {
background-color: var(--btn-group-toggle-background);
   padding: 0;
   display: flex;
   gap: .25rem;
   padding: .25rem;
   border-radius: calc(var(--border-radius) + 3px);
}

.btn-type-select {
    margin-bottom: 0;
    width: 100%;
    transition: color .3s, background-color .3s;
    color: var(--color-muted);
}

.btn-type-select:hover {
    color: var(--color-muted);
}

.btn-type-select.active {
    background-color: var(--gray-0);
    color: var(--color);
}

.btn-type-select.focus {
   box-shadow: none;
}

