#coauthors-container {
    font-family: inherit;
}

#coauthors-search {
    margin-top: 15px;
    position: relative;
}

#search-input {
    width: 100%;
    padding: 5px 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 10px;
    font-size: 14px;
    transition: border-color 0.3s;
    font-family: inherit;
}
p.author-kit-metabox-desc{
    color: #757575;
    font-size: 12px;
}
#search-input:focus {
    outline: none;
    border-color: #007cba;
    /* WordPress blue */
}

#coauthors-options {
    display: none;
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #ddd;
    border-radius: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    background: #fff;
    position: absolute;
    width: 100%;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-family: inherit;
}

#coauthors-options li {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    cursor: pointer;
    transition: background 0.2s;
    gap: 10px;
    font-family: inherit;
    font-weight: 500;
}

#coauthors-options li img {
    width: 30px;
    height: 30px;
    object-fit: cover;
    border-radius: 50%;
}

#coauthors-options li:hover {
    background-color: #f0f8ff;
}

.coauthor-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    padding: 8px 10px;
    background: rgb(255, 255, 255);
    border: 1px solid rgb(235, 235, 235);
    border-radius: 8px;

    gap: 10px;
    position: relative;
    font-family: inherit;
    font-weight: 500;
}

.coauthor-item img {
    width: 32px;
    height: 32px;
    object-fit: cover;
    border-radius: 50%;
}

.coauthor-item button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    border: none;
    border-radius: 50%;
    color: #202020;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 14px;
    line-height: 1;
}

.coauthor-item button:hover {
    background: #f0f0f0;
}