/* assets/css/tabs/breeders.css */

.breeders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.breeder-card {
    background-color: var(--bg-section);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    text-decoration: none;
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

.breeder-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
    color: var(--text-main);
}

.breeder-logo-container {
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent; /* Changed from white for better dark mode blend */
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    overflow: hidden; /* Clips the inner image to a circle */
    border: 2px solid var(--border-color); /* Optional: adds a nice border instead of white background */
}

.breeder-logo {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image fills the entire circle */
}

.breeder-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: var(--primary-dark);
}

.breeder-strain-count {
    font-size: 0.85rem;
    color: var(--text-muted);
    background-color: var(--bg-body);
    padding: 4px 10px;
    border-radius: 20px;
}
