/**
 * Dokan Seller Badge Shortcode Styles
 */

.dokan-seller-badge-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 10px 0;
    align-items: center;
}

.dokan-seller-single-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin-right: 5px;
    padding: 5px;
    border-radius: 4px;
    background-color: #f7f7f7;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
    text-align: center;
}

.dokan-seller-single-badge:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

.dokan-seller-single-badge img {
    max-width: 40px;
    height: auto;
    border-radius: 2px;
}

.dokan-seller-badge-empty {
    font-size: 14px;
    color: #999;
    padding: 5px 10px;
    border-left: 3px solid #ddd;
    margin: 10px 0;
}

.dokan-badge-name {
    font-size: 10px;
    margin-top: 3px;
    color: #333;
    max-width: 50px;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    line-height: 1.2;
}

/* For dark themes */
.theme-dark .dokan-seller-single-badge {
    background-color: #333;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.theme-dark .dokan-seller-badge-empty {
    color: #aaa;
    border-left-color: #444;
}

.theme-dark .dokan-badge-name {
    color: #ddd;
}

/* Responsive styles */
@media (max-width: 480px) {
    .dokan-seller-single-badge img {
        max-width: 32px;
    }
    
    .dokan-badge-name {
        font-size: 9px;
        max-width: 40px;
    }
} 