/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 20px;
    background-color: #f4f4f4;
    color: #333;
}

h1, h2 {
    color: #2c3e50;
    text-align: center;
}

p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

th, td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #2980b9;
    color: #fff;
    text-transform: uppercase;
    font-size: 0.9rem;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

tr:hover {
    background-color: #f1f1f1;
}

/* Form Controls */
input[type="number"],
input[type="datetime-local"],
select {
    padding: 8px;
    margin: 5px 0 15px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

/* Button Styles */
button {
    background-color: #27ae60;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

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

/* Canvas Styles */
canvas {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto 0px auto;
}

/* Small Text */
small {
    display: block;
    margin-top: 5px;
    color: #777;
    text-align: center;
    font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    th, td {
        padding: 10px;
    }

    button {
        width: 100%;
    }
}

/* Additional Enhancements */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.header, .footer {
    text-align: center;
    padding: 10px 0;
}

.chart-container {
    position: relative;
    margin: auto;
	margin-bottom: 5px;
    height: 400px;
    width: 100%;
}

.data-table {
	margin-top: 15px;