/* Order claim widget — used on kanban cards + order detail page */
.cpp-claim { display: inline-flex; align-items: center; gap: 0.4rem; flex-wrap: wrap; }
.cpp-claim--compact { font-size: 0.82rem; }

.cpp-claim__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.6rem;
    background: #fff8e0;
    border: 1.5px solid #ffd000;
    font-size: 0.82rem;
    line-height: 1.3;
    color: #161616;
}
.cpp-claim__badge::before {
    content: '👤';
    font-size: 0.9rem;
}
.cpp-claim__badge.is-mine {
    background: #fdebf5;
    border-color: #c61b6f;
    color: #8b1455;
}
.cpp-claim__badge.is-mine::before {
    content: '⚡';
}

.cpp-claim__btn {
    background: #161616;
    color: white;
    border: 1.5px solid #161616;
    padding: 0.35rem 0.7rem;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    line-height: 1.2;
    font-family: inherit;
}
.cpp-claim__btn:hover {
    background: #c61b6f;
    border-color: #c61b6f;
}

.cpp-claim__release {
    background: none;
    border: none;
    color: #6a6a6a;
    font-size: 0.78rem;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
    font-family: inherit;
}
.cpp-claim__release:hover {
    color: #c0392b;
}
