/* ============================================
   POS - Contact Dropdown Styles
   ============================================ */

/* Dropdown container */
.pos-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    max-height: 300px;
    overflow-y: auto;
    z-index: 100;
    margin-top: 4px;
}

/* Each item row */
.pos-suggestion-item {
    padding: 4px 8px;
    cursor: pointer;
    border-bottom: 1px solid #f1f5f9;
    font-size: 12px;
    line-height: 1.4;
    transition: all .12s;
    border-left: 3px solid transparent;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pos-suggestion-item:hover {
    background: rgba(233, 30, 99, 0.06);
    border-left-color: #E91E63;
}

.pos-suggestion-item:last-child {
    border-bottom: none;
}

/* Horizontal layout row */
.pos-suggestion-row {
    display: flex;
    align-items: center;
    gap: 6px;
    overflow: hidden;
}

/* Contact name */
.pos-suggestion-name {
    font-weight: 600;
    color: #1a1a2e;
    flex-shrink: 0;
}

/* Separator */
.pos-suggestion-sep {
    color: #cbd5e1;
    font-size: 11px;
}

/* Phone / meta */
.pos-suggestion-phone {
    color: #64748b;
    flex-shrink: 0;
}

/* Pets info */
.pos-suggestion-pets {
    color: #9C27B0;
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.pos-suggestion-pets i {
    font-size: 10px;
    color: #E91E63;
}

/* More pets indicator */
.pos-suggestion-more {
    color: #94a3b8;
    font-size: 10px;
    flex-shrink: 0;
}

/* Scrollbar styling */
.pos-suggestions::-webkit-scrollbar {
    width: 5px;
}
.pos-suggestions::-webkit-scrollbar-track {
    background: #f8fafc;
    border-radius: 0 8px 8px 0;
}
.pos-suggestions::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}
.pos-suggestions::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}
