/* custom.chatcategories — UI styles */

/* Shared input */
.custom-cat-input {
    width: 200px;
    padding: 6px 10px;
    border: 1px solid #c4c7cc;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
    box-sizing: border-box;
}

/* Popup wrapper */
.custom-cat-popup-wrapper {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Button row inside popup */
.custom-cat-btn-row {
    display: flex;
    gap: 6px;
    justify-content: space-between;
    margin-top: 10px;
}

/* Cancel button */
.custom-cat-btn-cancel {
    padding: 4px 14px;
    background: rgb(238, 238, 238);
    color: rgb(51, 51, 51);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    width: 100%;
}

/* Save / Create button */
.custom-cat-btn-save {
    padding: 4px 14px;
    background: rgb(59, 200, 245);
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    width: 100%;
}

/* Apply button (add chat popup) */
.custom-cat-btn-apply {
    padding: 6px 16px;
    background: #3bc8f5;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
}

/* "Add chat" button inside category view */
.custom-cat-add-chat-btn {
    padding: 8px 16px;
    cursor: pointer;
    color: #3bc8f5;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid #e6e7e8;
}

.custom-cat-add-chat-btn:hover {
    background: #f5f7f8;
}

/* "Add category" item in more-menu */
.custom-cat-create-menu-item .main-submenu-item-text {
    color: #0154c8;
}
