body {
    font-family: Arial, sans-serif;
    background-color: #f0f2f5;
    margin: 0;
    padding: 0;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.login-box, .dashboard-box {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

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

label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
}

input, textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

textarea {
    height: 100px;
    resize: vertical;
}

button {
    background-color: #0066cc;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    font-size: 1rem;
}

button:hover {
    background-color: #0052a3;
}

button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.error-message {
    color: #dc3545;
    margin-bottom: 1rem;
    padding: 0.5rem;
    background-color: #f8d7da;
    border-radius: 4px;
}

#status-message {
    margin-top: 1rem;
    padding: 0.5rem;
    border-radius: 4px;
}

#status-message.success {
    color: #28a745;
    background-color: #d4edda;
}

#status-message.error {
    color: #dc3545;
    background-color: #f8d7da;
}

#status-message.processing {
    color: #0066cc;
    background-color: #e6f3ff;
    padding: 0.5rem;
    border-radius: 4px;
}

.button-group {
    display: flex;
    gap: 10px;
    margin-bottom: 1rem;
}

.button-group button {
    flex: 1;
}

.clear-button {
    background-color: #6c757d;
}

.clear-button:hover {
    background-color: #5a6268;
}

h2 {
    text-align: center;
    color: #333;
    margin-bottom: 1.5rem;
}
