/* Wall of Fame Styles */
.vendor-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vendor-item.fame {
    padding: 0;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vendor-item.fame:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.vendor-badge {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.badge-header {
    padding: 4px 8px;
    text-align: center;
    font-weight: bold;
    font-size: 10px;
    letter-spacing: 0.5px;
    color: white;
}

.top-tier-header {
    background: linear-gradient(135deg, #ff3019 0%, #cf0404 100%);
}

.premium-header {
    background: linear-gradient(135deg, #f2b01e 0%, #e67e22 100%);
}

.featured-header {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.badge-content {
    padding: 10px;
    background-color: #1e1e1e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: none;
}

.vendor-name {
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 5px;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    background-color: #27ae60;
    color: white;
    border-radius: 50%;
    font-size: 10px;
}

.vendor-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.text-small {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
}

/* Admin Wall of Fame styles */
.admin-wall-of-fame .vendor-card {
    border: 1px solid #343a40;
    border-radius: 5px;
    margin-bottom: 15px;
    background-color: #2c3034;
}

.admin-wall-of-fame .vendor-card-header {
    padding: 10px 15px;
    border-bottom: 1px solid #343a40;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-wall-of-fame .vendor-card-body {
    padding: 15px;
}

.admin-wall-of-fame .vendor-stats-item {
    margin-bottom: 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .vendor-list {
        gap: 8px;
    }
    
    .badge-content {
        padding: 8px;
    }
}
