body {
    font-family: Arial, sans-serif;
    padding: 20px;
    background: rgb(103,193,103);
    background: linear-gradient(0deg, rgba(103,193,103,1) 0%, rgba(9,121,37,1) 50%, rgba(35,73,21,1) 100%);
}

h1 {
    text-align: center;
    font-size: 20px;
    color: yellow;
}

h2 {
    text-align: center;
    font-size: 30px;
    color: yellow;
}

h2 {
    text-align: center;
    font-size: 20px;
    color: black;
}


.header {
    text-align: center;
    margin-bottom: 20px;
}

.headerlogo {
    display: flex;
    align-items: center;
    position: absolute;
    top: 20px; /* Abstand vom oberen Rand */
    left: 20px; /* Abstand vom linken Rand */
}

.headerlogo img {
    height: 50px; /* Höhe des Logos anpassen */
    margin-right: 10px;
}

.header input[type="text"] {
    font-size: 16px;
    padding: 5px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-top: 5px;
}

.input-box, textarea { 
    background: yellow; 
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.button-container button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    outline: none;
    border: none;
    background-color: #4CAF50;
    color: white;
}

.button-container button:hover {
    background-color: #45a049;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.action-buttons button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: #f44336;
    color: white;
    border: none;
    border-radius: 5px;
}

.action-buttons button:hover {
    background-color: #da190b;
}

.button.delete_last {
    background-color: #FF5733;
    color: white;
}

.button.clear {
    background-color: #C70039;
    color: white;
}

.button.excel {
    background-color: #29C2F0;
    color: white;
}

.button.screenshot {
    background-color: #296EF0;
    color: white;
}

.selected-cell {
    background-color: lightgray;
}

table {
    width: 95%;
    margin: 0 auto;
    border-collapse: collapse;
}

th, td {
    border: 1px solid #dddddd;
    text-align: center;
    padding: 8px;
}

td {
    color: yellow;
    font-weight: bolder;
}

th {
    background-color: #f2f2f2;
    font-weight: bolder;
}

.button.number {
    background-color: black;
    color: yellow;
    border-radius: 55px;
    font-size: 30px;
}

.counter {
    margin-top: 5px;
    font-size: 18px;
    color: orange;
	            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 10px;
}

        /* Farbe Zeit und Datum */
        #datetime {
            color: orange;
        }