body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: #e0e0e0;
}

header {
    background-color: #000000;
    color: #ff3333;
    padding: 1rem;
    text-align: center;
    border-bottom: 2px solid #ff3333;
}

nav a {
    color: #ffffff;
    margin: 0 1rem;
    text-decoration: none;
}

nav a:hover {
    color: #ff3333;
    text-decoration: underline;
}

main {
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeIn 0.3s ease-out forwards;
}

.fade-out {
    animation: fadeOut 0.3s ease-in forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeOut {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(-10px); }
}

/* Blog Post Styles */
.blog-post {
    background-color: #1a1a1a;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #ff3333;
}

.blog-post h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.blog-post h3 a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s;
}

.blog-post h3 a:hover {
    color: #ff3333;
}

/* Blog Thumbnail Images */
.blog-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 1rem;
    border: 1px solid #333;
}

/* Make any image added to a page responsive */
main img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

/* Form Styles */
.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background-color: #1a1a1a;
    border: 1px solid #333;
    color: #fff;
    border-radius: 4px;
    box-sizing: border-box;
}

button {
    background-color: #ff3333;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.2s;
}

button:hover {
    background-color: #cc0000;
}

/* Login Indicator */
.login-indicator {
    position: fixed;
    top: 15px;
    right: 15px;
    background-color: #1a1a1a;
    color: #4CAF50;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    border: 1px solid #333;
    z-index: 1000;
    font-size: 0.9rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.5);
}