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

.container {
    max-width: 100%;
    margin: 0 auto;
    background: #fff;
    padding: 5px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

h1 {
    color: #333;
    text-align: center;
    margin-bottom: 10px;
}

h2 {
    color: #444;
    margin-top: 0px;
    margin-bottom: 0px;
	font-size: 14px; /* Adjusted font size for better readability */

}

table {
    border-collapse: collapse;
    width: 100%;
    margin-top: 20px;
}

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

th {
    background-color: #007BFF;
    color: white;
    font-size: 12px; /* Adjusted font size for better readability */
}

td {
    background-color: #f9f9f9;
}

td:hover {
    background-color: #f1f1f1; /* Light grey on hover for better UX */
}

tr:nth-child(even) td {
    background-color: #f2f2f2; /* Alternating row colors for better readability */
}

tr:nth-child(odd) td {
    background-color: #ffffff;
}

a {
    color: #007BFF;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

button {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
            background: linear-gradient(135deg, #005bb5, #003f7f);
            transform: translateY(-2px);
        }

.chart-container {
    width: 100%; /* Use full width */
    height: 300px; /* Fixed height for graphs */
    margin: 20px auto;
}

input[type="text"], select, textarea {
    width: 80%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

input[type="text"]:focus, select:focus, textarea:focus {
    border-color: #007BFF;
    outline: none;
}

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

.footer {
    text-align: center;
    margin-top: 20px;
    color: #666;
}
          /* Basic styling for the info icon */
        .info-icon {
            position: relative;
            display: inline-block;
            cursor: pointer;
            font-size: 24px;
            color: #007bff;
        }

        /* The popup window */
        .info-popup {
            display: none; /* Hidden by default */
            position: absolute;
            bottom: 125%; /* Position above the icon */
            left: 50%;
            transform: translateX(-50%);
            background-color: #555;
            color: #fff;
            padding: 8px;
            border-radius: 5px;
            width: 200px;
            text-align: center;
            font-size: 14px;
            z-index: 1;
            opacity: 0;
            transition: opacity 0.3s;
        }

        /* Arrow below the popup */
        .info-popup::after {
            content: "";
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            border-width: 5px;
            border-style: solid;
            border-color: #555 transparent transparent transparent;
        }

        /* Show popup when active */
        .info-popup.active {
            display: block;
            opacity: 1;
        }
