#albums-loading {
    display: flex;
    justify-content: center;
    padding: 2rem 0;
}

.albums-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-top-color: white;
    border-radius: 50%;
    animation: albums-spin 0.8s linear infinite;
}

@keyframes albums-spin {
    to { transform: rotate(360deg); }
}

.album-image {
    width: 100%;
    height: auto;
    display: block;
    min-width: 100px;
    transition: transform 0.3s ease-in-out;
}

.album-image:hover {
    transform: scale(1.05);
}

.album-link {
    display: block;
}
