/* Styling für das Playlist-Grid des Shortcodes */
.dllmr-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    padding: 10px 0;
}

.dllmr-item {
    border: 1px solid #eee;
    padding: 10px;
    text-align: center;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.dllmr-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.dllmr-cover img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 10px;
}

.dllmr-title {
    font-size: 1.1em;
    font-weight: bold;
    margin: 0 0 5px 0;
    color: #333;
}

.dllmr-artist {
    font-size: 0.9em;
    margin: 0;
    color: #666;
}