/* styles.css */
body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #090808;
    color: white;
}
.container {
	max-width: 600px;
	margin: auto;
	padding: 20px;
	background: #151515;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	border: solid red 1px;
}   
h1, h2 {
    text-align: center;
    line-height: 0%;
    --glow-color: rgba(123, 121, 121, 0.18);
    --glow-spread-color: rgba(117, 114, 114, 0);
    --enhanced-glow-color: rgb(215, 200, 230);
    --btn-color: rgb(198, 27, 27);
    border: .25em solid rgb(187, 37, 37);
    padding: 1em 3em;
    color: rgb(240, 230, 230);
    font-size: 22px;
    font-weight: bold;
    border-radius: 1em;
    outline: none;
    box-shadow: 0 0 1em .25em rgba(21, 21, 21, 0.09), 0 0 4em 1em rgba(96, 89, 89, 0.78), inset 0 0 .75em .25em rgba(9, 8, 8, 0.15);
    text-shadow: 0 0 .5em rgba(217, 10, 10, 0);
    position: relative;
    transition: all 0.3s;
    cursor: pointer;
    background: linear-Gradient(0deg, rgba(11,11,11,1) 3%, rgb(50, 47, 47) 50%, rgba(9,9,9,1) 98%);
}
/* Stil für die Song-Liste */
.song-list {
    list-style: none; /* Entfernt die Punkte (Listensymbole) */
    padding: 0;
    text-align: left; /* Lieder nach links ausrichten */
}

.song-list li {
    display: flex;
    justify-content: space-between; /* Liedername links, Lösch-Button rechts */
    align-items: center;
    margin: 10px 0;
    padding: 10px;
    background: #333;
    border-radius: 5px;
}

.song-name {
    flex-grow: 1; /* Liedername nimmt den verfügbaren Platz ein */
}

.delete-form {
    margin-left: 10px; /* Abstand zwischen Liedername und Lösch-Button */
}

/* Stil für den Lösch-Button */
.delete-button {
    background: linear-gradient(180deg, rgba(14,14,14,1) 22%, rgba(255, 0, 0, 1) 50%, rgba(10,10,10,1) 82%);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    font-size: 14px;
    cursor: pointer;
}

.delete-button:hover {
    background: linear-gradient(0deg, rgb(11, 11, 11) 3%, rgb(255, 0, 0) 50%, rgb(9, 9, 9) 98%);
}
.vote-button, .add-button {
    display: block;
    width: 100%;
    padding: 10px;
    background: linear-gradient(180deg, rgba(14,14,14,1) 22%, rgba(253,29,29,1) 50%, rgba(10,10,10,1) 82%);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
}
.vote-button:hover, .add-button:hover {
    background: linear-Gradient(0deg, rgb(11, 11, 11) 3%, rgb(15, 157, 11) 50%, rgb(9, 9, 9) 98%);
}
.add-song-form {
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid #ddd;
}
.add-song-form input {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
}
.results {
	margin-top: 20px;
	padding: 20px;
	background-color: #222;
	border-radius: 10px;
	border: solid red 2px;
}
.results li {
    margin: 5px 0;
    padding: 5px;
    border-bottom: 1px solid #ddd;
}
.success-message {
    color: green;
    font-weight: bold;
    margin-bottom: 10px;
}
.auto-style1 {
    color: silver;
}
.h6 {
    color: grey;
    font-size: 12px;
}
