body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 20px;
    color: #333;
}

h1 {
    text-align: center; 
    border: 1px solid #333333; 
    padding: 10px; 
    border-radius: 4px; 
    margin-top: 5px; 
    margin-bottom: 20px; 
    background-color: #FFBD00;
    Color: #333333;
}

#settingsheader {
    text-align: center; 
    border: 1px solid #333333; 
    padding: 10px; 
    border-radius: 4px; 
    margin-top: 5px; 
    margin-bottom: 20px; 
    background-color: #333333;
    Color: white;
}

ul {
    list-style: none;
    padding: 0;
}

li {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 4px;
}

button {
    background-color: #333333;
    color: white;
    font-weight: bold;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 5px;
    margin-top: 10px;
}

button:hover {
    background-color: #565656;
    Color: white;

}

button:disabled {
    background-color: #cccccc;
    color: #666666;
}

#messageForm {
    display: flex;
    flex-direction: column;
}

#messageInput, #messageForm button {
    box-sizing: border-box; 
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

#messageInput {
    width: 100%; 
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    resize: vertical; 
    min-height: 100px; 
    box-sizing: border-box; 
}

#messageForm button {
    background-color: #FFBD00;
    font-weight: bold;
    font-size: 1.5em;
    color: #333333;
    cursor: pointer;
}

#messageForm button:hover {
    background-color: #333333;
    Color: white;

}

.archived {
    background-color: #919191; 
    color: white; 
}

button.approved {
    background-color: #f44336; 
}

button.not-approved {
    background-color: #4CAF50; 
}

.message-item {
    position: relative;
    white-space: pre-wrap; 
}

.message-timestamp {
    position: absolute;
    bottom: 5px;
    right: 5px;
    font-size: 0.8em;
    color: #666;
}

.approved-message-item {
    white-space: pre-wrap; 
    font-size: 1.5em;
}

.archived-timestamp {
    color: white;
}

/* Popup-Styling */
.popup {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

.popup-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}


#deleteMessagesButton {
    width: 200px;  
    margin: 5px;  
    padding: 10px; 
}

#Einstellungen {
    width: 200px;  
    margin: 5px;   
    padding: 10px; 
}

#downloadBtn {
    width: 200px;  
    margin: 5px;   
    padding: 10px; 
}

.server-status-indicator {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    position: absolute;
    top: 5px;
    left: 5px;
    background-color: red; /* Standardfarbe ist Rot */
}









