/* MP Setlist Importer Styles */

/* Editor Block Styles */
.mp-setlist-importer-block {
    padding: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: 3px solid #5568d3;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.mp-setlist-importer-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.mp-setlist-importer-block button {
    font-size: 16px;
    padding: 12px 24px !important;
    background: white !important;
    color: #667eea !important;
    border: none !important;
    font-weight: 600 !important;
    transition: all 0.2s;
}

.mp-setlist-importer-block button:hover {
    background: #f8f9fa !important;
    transform: scale(1.05);
}

/* Setlist Styles für Frontend */
.setList {
    list-style-type: decimal;
    padding-left: 40px;
    margin: 20px 0;
    line-height: 1.8;
}

.setList li {
    margin-bottom: 10px;
    line-height: 1.8;
    font-size: 16px;
}

h5 {
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 20px;
    color: #333;
    border-bottom: 2px solid #667eea;
    padding-bottom: 10px;
}

