/**
 * ==============================
 * DP Shop Item CSS - Fixed, Optimized
 * ==============================
 */
 .chat-admin { color: #dc3545; font-weight: 700; }
 .chat-vip   { color: #f1c40f; }
 .chat-bot {
    color: #0dcaf0;
    font-weight: 600;
}

.chat-user {
    color: #adb5bd;
}

.dp-item {
    border: 1px solid #ddd;
    min-height: 80px;
    text-align: center;
    border-radius: 6px;
    background-color: #fff;
    margin-bottom: 15px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    transition: box-shadow 0.2s;
}
.dp-item:hover {
    box-shadow: 0 4px 18px rgba(30,80,180,0.10);
}

.dp-item > span,
.dp-item > img,
.dp-item > .dp-sell {
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding: 5px 0;
    max-width: 100%;
}

.dp-item__name {
    color: #143466;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px;
    line-height: 1.3;
    word-break: break-word;
}

.xiteam {
    border: 1px solid #f2e3c6;
    border-radius: 3px;
    background: #fdf6e3;
    padding: 3px 8px;
    display: inline-block;
}

.circle {
    background-color: transparent;
    border: 3px solid rgba(0,0,0,0.9);
    border-right-color: transparent;
    border-left-color: transparent;
    opacity: 0.9;
    border-radius: 50%;
    box-shadow: 0 0 35px #e74c3c;
    margin-left: auto;
    margin-right: auto;
    width: 48px;
    height: 48px;
    display: block;
    animation: spinPulse 1s infinite linear;
}
@keyframes spinPulse {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg);}
}

.dp-item__sm {
    font-size: 12px;
    margin-top: 5px;
    color: #656565;
    line-height: 1.2;
}

.dp-item__lc {
    font-size: 12px;
    color: #555;
}

.dp-item__lc span {
    color: #dc2626;
    font-weight: bold;
}

.dp-item button:disabled,
.dp-item button[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}