/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f5f5;
}

/* Header Styles */
header {
    background: #2c3e50;
    color: white;
    padding: 1rem;
}

.banner {
    text-align: center;
    padding: 1rem 0;
}

.banner h1 {
    margin-bottom: 0.5rem;
}

/* Navigation */
nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

nav li {
    margin: 0 1rem;
}

nav a {
    color: white;
    text-decoration: none;
}

nav a:hover {
    text-decoration: underline;
}

/* Content Area */
.content {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.stream {
    background: white;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 4px;
    position: relative;
}

.stream-actions {
    margin-top: 1rem;
    text-align: right;
}

.edit-btn {
    background: #3498db;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
}

.delete-btn {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 0.5rem;
}

.edit-btn:hover {
    background: #2980b9;
}

.delete-btn:hover {
    background: #c0392b;
}

/* Login Form */
.login-container {
    max-width: 400px;
    margin: 5rem auto;
    padding: 2rem;
    background: white;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.login-container h1 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.login-container input {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
}

.login-container button {
    width: 100%;
    padding: 0.5rem;
    background: #2c3e50;
    color: white;
    border: none;
    cursor: pointer;
}

.error {
    color: red;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    text-align: center;
    padding: 1rem;
    background: #2c3e50;
    color: white;
    margin-top: 2rem;
}

/* Home Page Styles */
.features {
    background: white;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.features h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.features ul {
    padding-left: 1.5rem;
}

.features li {
    margin-bottom: 0.5rem;
}

.call-to-action {
    text-align: center;
    padding: 2rem;
    background: #3498db;
    color: white;
    border-radius: 4px;
    margin: 2rem 0;
}

.button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #2c3e50;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 1rem;
}

.button:hover {
    background: #1a252f;
}

.recent-thoughts {
    margin: 2rem 0;
}

.thought {
    background: white;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 4px;
    border-left: 4px solid #3498db;
}

.thought h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.thought small {
    color: #7f8c8d;
    font-size: 0.8rem;
}

/* Stream Form Styles */
.stream-form {
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-group input[type="date"],
.form-group input[type="time"] {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.form-group textarea {
    width: 50vw;
    height: 50vh;
    min-width: 300px;
    min-height: 300px;
    max-width: 100%;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    resize: both;
}

button[type="submit"] {
    padding: 0.75rem 1.5rem;
    background: #2c3e50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button[type="submit"]:hover {
    background: #1a252f;
}
