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

.container {
    max-width: 600px;
    margin: 50px auto;
    background-color: #fff;
    padding: 30px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.message-container {
    text-align: center;
    font-family: Arial, sans-serif;
}

.message-container h1 {
    color: #3d97ad;
}

h1 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

h2 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

h3 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

label {
    font-size: 14px;
    color: #1f1f1f;
}

.home-button {
    display: inline-block;
    padding: 12px 14px;
    margin-top: 0px;
    background-color: white;
    color: #3d97ad;
    text-decoration: none;
    border-radius: 5px;
    border: 1px solid #3d97ad;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
}

.home-button:hover {
    background-color: #117791;
    color: white;
}

.edit-note-button {
    display: flex;
    padding: 5px 0px;
    margin-top: 0px;
    width: 30px;
    height: 20px;
    text-align: center;
    align-items: center;
    justify-content: center;
    background-color: white;
    color: #3d97ad;
    text-decoration: none;
    border-radius: 5px;
    border: 1px solid #3d97ad;
    font-size: 11px;
    font-weight: bold;
    cursor: pointer;
}

.edit-note-button:hover {
    background-color: #117791;
    color: white;
}

.separator_thin {
    border: none;
    border-top: 1px solid #ccc;
    margin: 5px 0;
}

.separator_thick {
    border: none;
    border-top: 3px solid #ccc;
    border-radius: 2px;
    margin: 5px 0;
}