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

/* Body and layout */
body {
    font-family: Arial, sans-serif;
    background: #f0f2f5;
    color: #333;
    line-height: 1.6;
}

header {
    background: #0073e6;
    color: white;
    padding: 20px 0;
    text-align: center;
}

header nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

header nav ul li a:hover {
    text-decoration: underline;
}

main {
    max-width: 700px;
    margin: 30px auto;
    padding: 0 15px;
}

section {
    background: white;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

textarea {
    width: 100%;
    height: 100px;
    padding: 10px;
    font-size: 1rem;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    resize: vertical;
}

button {
    background: #0073e6;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background: #005bb5;
}

#currentStatus {
    margin-top: 10px;
    font-style: italic;
    color: #555;
}

footer {
    text-align: center;
    padding: 15px;
    background: #f0f2f5;
    color: #666;
}
