body {
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;
    margin: 0;
    padding: 0;
}

h1 {
    text-align: center;
    margin-top: 20px;
}

form {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
}

label {
    font-weight: bold;
}

textarea {
    width: 96%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 10px;
}

input[type="password"],
input[type="date"],
input[type="submit"] {
    width: 96%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 10px;
}

input[type="submit"] {
    width: 100%;
    background-color: #007BFF;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}

#link {
    text-align: center;
    margin-top: 20px;
    display: none;
}

#pasteLink {
    color: #007BFF;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

pre {
    background-color: #f8f8f8;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    white-space: pre-wrap;
}

#accessPassword {
    margin-right: 10px;
}

#message {
    text-align: center;
    margin-top: 20px;
}

#message a {
    color: #007BFF;
    text-decoration: none;
}

#copyButton {
    padding: 5px;
    background-color: #007BFF;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    border: none;
}

#copyButton:hover {
    background-color: #0056b3;
}

#saveAsTextButton {
    padding: 5px;
    background-color: #007BFF;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    border: none;
    margin-left: 5px;
}

#saveAsTextButton:hover {
    background-color: #0056b3;
}