/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Body Styling */
body {
    background-color: #f4f4f4;
    color: #333;
    padding: 20px;
    text-align: center;
}

/* Headings */
h1 {
    font-size: 28px;
    color: #444;
    margin-bottom: 10px;
}

h2 {
    font-size: 22px;
    color: #555;
    margin-bottom: 10px;
}

/* Form Styling */
.form-container {
    background-color: #fff;
    max-width: 500px;
    margin: 20px auto;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

form label {
    display: block;
    text-align: left;
    margin-top: 10px;
    font-weight: bold;
}

form input, form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form textarea {
    min-height: 100px;
    resize: vertical;
}

/* Buttons */
button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 15px;
    margin-top: 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0056b3;
}

/* Links Styled as Buttons */
a button {
    background-color: #28a745;
}

a button:hover {
    background-color: #218838;
}

/* Error & Success Messages */
.error-message {
    color: red;
    margin-top: 10px;
    font-weight: bold;
}

.success-message {
    color: green;
    margin-top: 10px;
    font-weight: bold;
}

/* Story List */
.story-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.story {
    background-color: #fff;
    width: 90%;
    max-width: 600px;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    text-align: left;
}

.story h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.story p {
    font-size: 14px;
    line-height: 1.5;
}

/* Comments Section */
.comments-section {
    margin-top: 15px;
    padding-left: 10px;
    border-left: 2px solid #ddd;
}

.comment-form {
    margin-top: 15px;
}

/* Navigation & Logout Button */
.nav-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.logout-button {
    background-color: #dc3545;
}

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

/* Responsive Design */
@media (max-width: 600px) {
    .form-container, .story {
        width: 100%;
    }
}

.styled-button {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s ease;
}

.styled-button:hover {
    background-color: #0056b3;
}