/**
 * Copyright © Scraperite. All rights reserved.
 * Resellers Tab Styling
 */

.resellers-tab-content {
    padding: 20px 0;
}

.resellers-empty-message {
    color: #666;
    font-style: italic;
    text-align: center;
    padding: 30px 0;
}

.resellers-list-wrapper {
    width: 100%;
}

.resellers-intro {
    margin-bottom: 20px;
    color: #333;
    font-size: 14px;
}

.reseller-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
    align-items: center;
}

.reseller-item {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80px;
}

.reseller-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    background: #fff;
    width: 100%;
    height: 100%;
    min-height: 80px;
}

.reseller-link:hover {
    border-color: #FF5500;
    box-shadow: 0 2px 8px rgba(255, 85, 0, 0.1);
    transform: translateY(-2px);
}

.reseller-logo {
    max-width: 120px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.reseller-name {
    color: #333;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.reseller-link:hover .reseller-name {
    color: #FF5500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .reseller-list {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 15px;
    }

    .reseller-logo {
        max-width: 100px;
        max-height: 50px;
    }
}

@media (max-width: 480px) {
    .reseller-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}
