/* Centralized styling for WriteMoves */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: black;
    color: white;
}

/* Anchor styles */
a {
    color: #00bfff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Navigation bar */
nav {
    background-color: #222;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav a {
    margin: 0 15px;
    color: white;
    font-weight: bold;
}

.nav-links {
    display: flex;
}

.nav-links a:hover {
    color: #00bfff;
}

/* Two-column layout */
.container {
    display: flex;
    flex-wrap: wrap; /* Allows stacking on smaller screens */
    gap: 20px; /* Spacing between columns */
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px; /* Padding for the overall container */
    justify-content: space-between;
}

/* Individual column styles */
.column {
    flex: 1;
    min-width: 300px;
    background-color: #333;
    padding: 20px; /* Consistent padding for all sides */
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    box-sizing: border-box; /* Ensures padding is included in width calculations */
}

/* Buttons */
button {
    background-color: #00bfff;
    color: black;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #008fcc;
}

/* Input fields */
input[type="text"], input[type="password"], input[type="email"], textarea {
    width: calc(100% - 20px); /* Accounts for 20px padding inside .column */
    padding: 10px;
    margin: 10px 0;
    background-color: #555;
    color: white;
    border: 1px solid #777;
    border-radius: 5px;
    font-size: 1rem;
}

input[type="text"]:focus, input[type="password"]:focus, input[type="email"]:focus, textarea:focus {
    outline: none;
    border-color: #00bfff;
    transition: border-color 0.3s ease;
}

/* Textarea for user content */
textarea {
    resize: vertical;
    height: 100px;
}

textarea.scrollable {
    height: 300px; /* Example for a larger scrollable text area */
}

@media (max-width: 768px) {
    .container {
        flex-direction: column; /* Stack columns vertically */
    }
    .column {
        width: 100%; /* Columns take full width */
    }
}

