/* ФИКСИРОВАННЫЕ РАЗМЕРЫ МИНИАТЮР */

.td-img, .table-thumb {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px;
    min-height: 44px;
    border-radius: 6px;
    background-size: cover;
    background-position: center;
    background-color: #222;
}

.artist-img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Статусы активности */
.active-scroll {
    cursor: grabbing !important;
}

/* Обложка артиста на странице артиста */
.artist-big-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    flex-shrink: 0;
    background-color: #333;
}

/* Для мобилок */
@media (max-width: 768px) {
    .artist-big-img {
        width: 120px;
        height: 120px;
    }
}

/* ФИКСИРОВАННЫЕ РАЗМЕРЫ МИНИАТЮР */

.td-img, .table-thumb {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px;
    min-height: 44px;
    border-radius: 6px;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-color: #222;
}

/* Карточки артистов на главной */
.artist-card .artist-img {
    width: 100px !important;
    height: 100px !important;
    border-radius: 50% !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-color: #333;
    margin: 0 auto 12px;
    display: block;
}

/* Карточки артистов в поиске */
#searchResults .artist-img {
    width: 70px !important;
    height: 70px !important;
    border-radius: 50% !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-color: #333;
    margin: 0 auto 8px;
}

/* Большая фотка на странице артиста */
.artist-big-img {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-color: #333;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    flex-shrink: 0;
}

/* Для мобилок */
@media (max-width: 768px) {
    .artist-card .artist-img {
        width: 70px !important;
        height: 70px !important;
    }
    
    .artist-big-img {
        width: 120px !important;
        height: 120px !important;
    }
    
    #searchResults .artist-img {
        width: 60px !important;
        height: 60px !important;
    }
}

/* Фон для карточек без фото */
.artist-img:not([style*="background-image"]) {
    background-color: #333 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #999 !important;
    font-size: 24px !important;
}


/* Фиксим фото артиста */
.artist-big-img {
    transition: transform 0.3s ease !important;
    opacity: 1 !important;
    transform: scale(1) !important;
}

.artist-big-img:hover {
    transform: scale(1.02) !important;
    opacity: 1 !important;
}

.artist-big-img:not(:hover) {
    transform: scale(1) !important;
    opacity: 1 !important;
}

/* Мобильные размеры */
@media (max-width: 768px) {
    .td-img, .table-thumb {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px;
        min-height: 36px;
    }
    
    .artist-card .artist-img {
        width: 70px !important;
        height: 70px !important;
    }
    
    .artist-big-img {
        width: 140px !important;
        height: 140px !important;
    }
    
    .album-cover {
        width: 130px !important;
        height: 130px !important;
    }
}

@media (max-width: 380px) {
    .td-img, .table-thumb {
        width: 32px !important;
        height: 32px !important;
        min-width: 32px;
        min-height: 32px;
    }
    
    .artist-card .artist-img {
        width: 60px !important;
        height: 60px !important;
    }
    
    .album-cover {
        width: 110px !important;
        height: 110px !important;
    }
}