/* General Body Styling */
body {
    font-family: 'Courier New', Courier, monospace;
    background-color: #f5f5dc; /* Beige background */
    color: #5c4033; /* Dark brown text */
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Container for content */
.container {
    max-width: 900px;
    margin: 20px auto;
    background-color: #fff8e1; /* Lighter beige for contrast */
    border: 1px solid #8b6b61; /* Soft brown border */
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Header Styling */
header h1 {
    color: #8b4513; /* SaddleBrown */
    text-align: center;
    font-family: 'Georgia', serif;
}

/* Form and Input Styling */
.form-container {
    margin-bottom: 20px;
}

input[type="text"], input[type="password"], select {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border: 1px solid #8b6b61;
    border-radius: 4px;
    background-color: #fff8e1;
    font-family: 'Courier New', Courier, monospace;
}

button {
    background-color: #8b4513; /* SaddleBrown */
    color: #fff; /* White text */
    border: none;
    border-radius: 4px;
    padding: 10px 15px;
    font-size: 14px;
    cursor: pointer;
    margin-top: 15px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}

button:hover {
    background-color: #a0522d; /* Sienna */
}

/* Report Output Styling */
.report-output {
    margin-top: 20px;
    padding: 10px;
    border: 1px solid #8b6b61;
    background-color: #fff8e1;
    font-size: 16px;
}

ul {
    list-style-type: none;
    padding-left: 0;
}

ul li {
    margin: 10px 0;
    padding-left: 15px;
    position: relative;
}

ul li::before {
    content: "•";
    color: #8b6b61; /* Brown bullet points */
    position: absolute;
    left: 0;
}

/* Footer Styling */
.footer {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #8b6b61;
}

/* Status Messages */
#report-status {
    color: #8b4513;
    text-align: center;
    margin-top: 10px;
    font-weight: bold;
}
