        body {
            font-family: Arial, sans-serif;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            background-color: #f5f5f5;
        }
        .header {
            background-color: #2c3e50;
            color: white;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 30px;
            text-align: center;
        }
        .year-selector, .stage-selector {
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 30px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .festival-info {
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 30px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .festival-details {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 15px;
        }
        .detail-section {
            background-color: #f8f9fa;
            padding: 15px;
            border-radius: 5px;
            border-left: 4px solid #3498db;
        }
        .detail-section h4 {
            margin-top: 0;
            color: #2c3e50;
            border-bottom: 1px solid #ddd;
            padding-bottom: 5px;
        }
        .year-grid, .stage-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
            gap: 10px;
            margin-top: 15px;
        }
        .stage-grid {
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        }
        .year-button, .stage-button {
            background-color: #3498db;
            color: white;
			width: 150px;
            padding: 10px;
            text-decoration: none;
            border-radius: 5px;
            text-align: center;
            transition: background-color 0.3s;
        }
        .year-button:hover, .stage-button:hover {
            background-color: #2980b9;
        }
        .artist-card {
            background-color: white;
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 15px;
            margin-top: 15px;
			margin-bottom: 15px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .artist-name {
            font-size: 1.3em;
            font-weight: bold;
            color: #2c3e50;
            margin-bottom: 10px;
        }
        .performance-info {
            background-color: #ecf0f1;
            padding: 10px;
            border-radius: 5px;
            margin-bottom: 10px;
        }
        .links {
            margin-top: 10px;
        }
        .links a {
            display: inline-block;
            margin-right: 15px;
            padding: 5px 10px;
            background-color: #3498db;
            color: white;
            text-decoration: none;
            border-radius: 3px;
            font-size: 0.9em;
        }
        .links a:hover {
            background-color: #2980b9;
        }
        .links a.webseite {
            background-color: #FFD800;
		 }
        .links a.webseite:hover {
            background-color: #FFDD47;
        }
        .links a.wikipedia {
            background-color: #808080;
		 }
        .links a.wikipedia:hover {
            background-color: #A0A0A0;
        }
         .links a.facebook {
            background-color: #0094FF;
		 }
        .links a.facebook:hover {
            background-color: #00AFFF;
        }
         .links a.instagram {
            background-color: #E4405F;
        } 
		.links a.instagram:hover {
            background-color: #C13584;
        }
        .links a.spotify {
            background-color: #1DB954;
        }
        .links a.spotify:hover {
            background-color: #1ed760;
        }
        .links a.soundcloud {
            background-color: #ff5500;
        }
        .links a.soundcloud:hover {
            background-color: #ff3300;
        }

        .links a.MusicBrainz {
            background-color: #115500;
        }
        .links a.MusicBrainz:hover {
            background-color: #113300;
        }


        .back-link {
            display: inline-block;
            margin-bottom: 20px;
            padding: 10px 15px;
            background-color: #95a5a6;
            color: white;
            text-decoration: none;
            border-radius: 5px;
        }
        .back-link:hover {
            background-color: #7f8c8d;
        }
        .description {
            margin-top: 10px;
            line-height: 1.5;
            color: #555;
        }
        .no-results {
            text-align: center;
            padding: 40px;
            color: #7f8c8d;
            font-style: italic;
        }
        @media (max-width: 768px) {
            .festival-details {
                grid-template-columns: 1fr;
            }
        }
		.year-button,.stage-button{
			  display:block;          /* volle Breite auf Mobile */
			  width:100%;
			}
		@media(min-width:600px){
		  .year-button,.stage-button{width:auto;display:inline-block;}
		}