body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

h1 {
    margin: 10px;
    padding: 5px;
    text-align: center;
    color: #895830;
    font-size: 30px;
    font-family: 'Poppins', sans-serif; 
    font-weight: bold;
	text-shadow: 
        1px 1px 0 #895830,
        2px 2px 0 #895830,
        3px 3px 0 #895830,
        10px 10px 15px rgba(0, 0, 0, 0.2);
}

.top-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10px;
}

.current-date-message {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    text-align: left;
}

.error-message {
    color: red;
    font-size: 18px;
    text-align: center;
    font-weight: bold;
}

.timer {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    text-align: right;
}

.form-container {
    display: flex;    
    justify-content: center;
    margin-bottom: 20px;
}

form {
    display: flex;
    align-items: center;
}

input[type="date"] {
    padding: 10px;
    margin-right: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    background-color: #388E3C;
    color: white;
    cursor: pointer;
    font-size: 10px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #388E3C;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
    background-color: #388E3C;
    color: white;
}

td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
    border: 1px solid #ddd;
    padding: 12px;           
    text-align: center;
    font-size: 16px;        
    font-weight: bold;
}

tr:hover {
    background-color: #f1f1f1;
}
