body {
    font-family: Arial, sans-serif;
    margin: 40px;
    background: #f4f4f4;
}

h1 {
    color: #333;
}

p {
    font-size: 18px;
}

.button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 16px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
}

.button:hover {
    background: #0056b3;
}

.logout-button {
    background: #dc3545;
}

.logout-button:hover {
    background: #c82333;
}
