body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    height: auto;
    margin: 0;
    line-height: 1.4em;
    padding:10px;
}

#app {
    max-width: 600px;
    padding: 20px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 25px;
}
h1{
    margin: 30px 0px;
}
h1, h2 {
    text-align: center;
    color: #747b7c; /* Dunkelgrau */
    flex-basis: 100%;
    line-height: normal;
}

input[type="text"], input[type="number"] {
    width: calc(100% - 22px);
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #00bf1a; /* Grün */
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin-bottom: 10px;
}

button:hover {
    background-color: #008d14; /* Dunkleres Grün */
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    padding: 5px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ccc; /* Trennlinie zwischen Spielern */
}

ul li:last-child {
    border-bottom: none; /* Keine Trennlinie unter dem letzten Spieler */
}

ul li button {
    padding: 5px 10px;
    background-color: #e78f08; /* Orange */
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    width: 150px;
    margin-bottom: 3px !important;
}

ul li button:hover {
    background-color: #cc7a06; /* Dunkleres Orange */
}
#endButton{
    background-color: #e78f08; /* Orange */
}
#endButton:hover{
    background-color: #cc7a06; /* Dunkleres Orange */
}
#currentPlayer {
    font-weight: bold;
    color: #3b2c41;
    font-size: 20px;
    margin-bottom: 10px;
    margin-top: 30px;
}

#players div {
    margin-bottom: 10px;
    padding: 10px;
    background-color: #f9f9f9; /* Hellgrau */
    border: 1px solid #ccc;
    border-radius: 4px;
}

.completed {
    background-color: #d4edda !important;
    font-weight: bold;
}
.subPoints{
    font-size: 14px;
    color: #747b7c;
}

.collapsible {
    background: #f9f9f9;
    color:#747b7c;
    cursor: pointer;
    padding: 10px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 16px;
    display: flex;
    font-weight: bold;
    justify-content: space-between;
}

.active, .collapsible:hover {
    background-color: #ccc;
}

.content {
    padding: 0 18px;
    display: none;
    overflow: hidden;
    background-color: #f1f1f1;
}
#outer{
    width: 100%;
}
.Footer, .Footer a{
    font-size: 12px;
    color: #ccc;
    text-align: center;
}
#playerList{
    margin-bottom: 30px;
}
.image{
    width: 100%;
}
.iconGrey{
    width: 50px;
    height: 50px;
    margin-bottom: -12px;
}