.qty-group input {
    max-width: 40px;
}

[data-bs-theme="dark"] ::placeholder {
    color: #aaa !important;
    /* light gray placeholder text */
    opacity: 1;
    /* ensure visible */
}

/* Optional: make it slightly lighter for better contrast */
[data-bs-theme="dark"] .form-control::placeholder {
    color: #b5b5b5 !important;
}

.chat-bubble {
    padding: 10px 15px;
    border-radius: 15px;
    margin-bottom: 10px;
    max-width: 80%;
}

.chat-customer {
    background-color: #f1f5f9;
    align-self: flex-start;
    border-bottom-left-radius: 0;
}

.chat-seller {
    background-color: #206bc4;
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 0;
}

.chat-box {
    display: flex;
    flex-direction: column;
}

.chat-price-offer {
    font-weight: bold;
    font-size: 1.1em;
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 5px;
}

.chat-customer .chat-price-offer {
    background-color: #e2e8f0;
    color: #1e293b;
}

.chat-seller .chat-price-offer {
    background-color: #1a569d;
    color: #ffffff;
}

.chat-time {
    font-size: 0.75rem;
    margin-top: 5px;
    opacity: 0.8;
}

.chat-status-action {
    margin-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 10px;
}

.chat-seller .chat-status-action {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.bg-primary-lt {
    background-color: #f0f7ff !important;
    color: #0056b3 !important;
    border: 1px solid #d0e4ff;
}


#seller_chat_box::-webkit-scrollbar {
    width: 6px;
}

#seller_chat_box::-webkit-scrollbar-thumb {
    background: #dee2e6;
    border-radius: 10px;
}