/* style.css */
body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f7f6; /* Light gray background */
    color: #333;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    color: #2c3e50; /* Darker text for headings */
    margin-top: 1em;
    margin-bottom: 0.5em;
    font-weight: 600;
}

a {
    color: #3498db; /* A pleasant blue for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* General container styling for main content areas */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

/* Form element basic styling */
input[type="number"],
input[type="text"],
select,
textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
    font-size: 1rem;
}

button {
    background-color: #28a745; /* Green button */
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #218838;
}

/* Utility classes */
.text-center {
    text-align: center;
}
.margin-top-2 {
    margin-top: 2rem;
}
.margin-bottom-2 {
    margin-bottom: 2rem;
}