/* Artist Success Page Styles */


.mmethod-label {
    color: #888;
    padding: 15px;
    color: #888;
    font-size: 12px;
    margin-top: 5px;
	text-align: left;
}


@media (max-width: 768px) {
    .method-explanation {
        padding: 10px 12px;
        margin-bottom: 15px;
    }
    
    .method-explanation p {
        font-size: 11px;
    }
}

.success-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .success-stats {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .success-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}

.stat-card {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
}

.stat-value {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 5px;
}

.stat-label {
    color: #888;
    font-size: 14px;
}

.artist-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

@media (max-width: 768px) {
    .artist-metrics {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .artist-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}

.metric {
    text-align: center;
}

.metric-value {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
}

.metric-label {
    color: #888;
    font-size: 12px;
    margin-top: 5px;
}

.artist-header {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
}

.artist-info-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.artist-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.artist-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.score-label {
    font-size: 12px;
    color: #888;
    font-weight: 500;
}

.score-value {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

@media (max-width: 768px) {
    .artist-header {
        gap: 10px;
    }
    
    .artist-info-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
    }
    
    .artist-left {
        gap: 15px;
    }
    
    .artist-info-header h3 {
        font-size: 1.4em;
    }
    
    .artist-score {
        padding: 8px 12px;
    }
    
    .score-value {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .artist-info-header {
        gap: 10px;
    }
    
    .artist-left {
        gap: 10px;
    }
    
    .artist-score {
        padding: 6px 10px;
    }
    
    .score-value {
        font-size: 18px;
    }
    
    .score-label {
        font-size: 11px;
    }
    
    .artist-info-header h3 {
        font-size: 1.2em;
    }
}

/* Artist Performance Selectors - Horizontal Container mit linksbündiger Anordnung */
.selectors-container {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    align-items: center;
    margin-bottom: 30px;
    width: 100%;
    justify-content: flex-start;
}

.genre-selector, .method-selector, .tracks-selector, .timeframe-selector {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 0;
    flex: 0 0 auto;
    min-width: 0;
}

.genre-selector label, .method-selector label, .tracks-selector label, .timeframe-selector label {
    color: #888;
    font-size: 0.9em;
    font-weight: 600;
    text-align: left;
    white-space: nowrap;
}

.genre-selector select, .method-selector select, .tracks-selector select, .timeframe-selector select {
    background: #333;
    color: #fff;
    border: 1px solid #555;
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 0.9em;
    min-width: 150px;
    max-width: 250px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
    transition: all 0.2s ease;
}

.genre-selector select:hover, .method-selector select:hover, .tracks-selector select:hover, .timeframe-selector select:hover {
    background-color: #2a2a2a;
    border-color: #afafaf;
}

.genre-selector select:focus, .method-selector select:focus, .tracks-selector select:focus, .timeframe-selector select:focus {
    outline: none;
    border-color: #afafaf;
    box-shadow: 0 0 0 2px rgba(0, 255, 150, 0.2);
}

.genre-selector select option, .method-selector select option, .tracks-selector select option, .timeframe-selector select option {
    background: #222;
    color: #fff;
    padding: 12px;
}

.genre-selector select option:hover, .method-selector select option:hover, .tracks-selector select option:hover, .timeframe-selector select option:hover {
    background: #2a2a2a;
}

/* Responsive Design */
@media (max-width: 768px) {
    .selectors-container {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
        justify-content: flex-start;
    }
    
    .genre-selector, .method-selector, .tracks-selector, .timeframe-selector {
        flex: none;
        width: 100%;
    }
    
    .genre-selector label, .method-selector label, .tracks-selector label, .timeframe-selector label {
        width: 100%;
        text-align: left;
    }
    
    .genre-selector select, .method-selector select, .tracks-selector select, .timeframe-selector select {
        width: 100%;
    }
}

