/* Customer Form */
@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    cursor: pointer;
    transition: background 0.15s;
}

.contact-item:active {
    background: var(--gray-100);
}

.contact-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.contact-info {
    flex: 1;
    min-width: 0;
}

.contact-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-900);
}

.contact-phone {
    font-size: 12px;
    color: var(--gray-500);
    font-family: 'SF Mono', monospace;
    margin-top: 2px;
}

.contact-badge {
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
}

.call-incoming {
    background: var(--blue-50, #eff6ff);
    color: var(--blue-600, #2563eb);
}

.call-outgoing {
    background: var(--green-50, #f0fdf4);
    color: var(--green-600, #16a34a);
}

.call-missed {
    background: var(--red-50, #fef2f2);
    color: var(--red-600, #dc2626);
}

.breed-autocomplete {
    position: relative;
}

.breed-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 200;
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-top: none;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    max-height: 200px;
    overflow-y: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.breed-dropdown.show {
    display: block;
}

.breed-option {
    padding: 10px 12px;
    cursor: pointer;
    font-size: 14px;
    border-bottom: 1px solid var(--gray-100);
}

.breed-option:last-child {
    border-bottom: none;
}

.breed-option:active,
.breed-option.highlighted {
    background: var(--primary-50);
}

.breed-option .match {
    color: var(--primary-500);
    font-weight: 700;
}
