/* START KOL Store Owners Widget CSS */

.kol-store-owners-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
}

.kol-store-owner-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.kol-store-owner-icon:hover {
    transform: scale(1.1);
}

.kol-store-owner-image {
    width: 48px;
    height: 48px;
    border-radius: 4px;
    object-fit: cover;
    display: block;
}

html.light-mode .kol-store-owner-image {
    border: 2px solid #e5e7eb;
}

html.dark-mode .kol-store-owner-image {
    border: 2px solid #333333;
}

.kol-store-owner-tooltip {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 10;
}

.kol-store-owner-icon:hover .kol-store-owner-tooltip {
    opacity: 1;
}

.kol-store-owners-empty {
    padding: 20px;
    text-align: center;
    border-radius: 6px;
    width: 100%;
}

html.light-mode .kol-store-owners-empty {
    color: #6b7280;
    background: #f9fafb;
}

html.dark-mode .kol-store-owners-empty {
    color: #9ca3af;
    background: #111827;
}

/* END KOL Store Owners Widget CSS */
