body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 20px;
}
.container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.form-section, .story-section {
    margin-bottom: 30px;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
    background-color: #fafafa;
}
h1, h2 {
    color: #333;
    border-bottom: 2px solid #007bff;
    padding-bottom: 5px;
    margin-bottom: 20px;
}
h3 {
    color: #007bff;
    margin-top: 20px;
    border-bottom: 1px solid #c9e2ff;
    padding-bottom: 5px;
}
label {
    display: block;
    margin-bottom: 8px;
    color: #555;
}
input[type="text"], input[type="email"], input[type="password"], textarea, select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}
textarea {
    resize: vertical;
    height: 150px;
}
button {
    background-color: #007bff;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}
button:hover {
    background-color: #0056b3;
}
.success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    border: 1px solid #c3e6cb;
}
.error-message {
    background-color: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    border: 1px solid #f5c6cb;
}
.story-item {
    background-color: #fff;
    border: 1px solid #eee;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 6px;
}
.story-item h4 {
    margin-top: 0;
    margin-bottom: 5px;
}
.story-item p {
    margin-top: 0;
}
.menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.menu-link {
    background-color: #007bff;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    text-decoration: none;
    text-align: center;
}
.menu-link:hover {
    background-color: #0056b3;
}
.logout-link {
    background-color: #dc3545;
}
.logout-link:hover {
    background-color: #c82333;
}
.forgot-password-link {
    text-align: right;
    display: block;
    font-size: 14px;
    color: #007bff;
    text-decoration: underline;
    margin-top: -10px;
    margin-bottom: 10px;
}
.story-list {
    list-style-type: none;
    padding: 0;
    margin-top: 10px;
}
.story-list li a {
    display: block;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
    margin-bottom: 5px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.2s ease-in-out;
}
.story-list li a:hover {
    background-color: #e9e9e9;
}
.story-details {
    background-color: #f1f1f1;
    border-left: 4px solid #007bff;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}
.story-details p {
    margin: 5px 0;
}
.story-content {
    background-color: #fafafa;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
    line-height: 1.6;
}
