/* Styling for our charming froge charts */
body {
    font-family: Arial, sans-serif;
    background-color: #f0f8ff;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    color: #004d00;
}

.chart-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.chart {
    width: 85%;
    height: 500px;
    background: linear-gradient(45deg, #b3ffab, #12fff7);
    box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.2);
}

.axis {
    stroke: #004d00;
    stroke-width: 2;
}

.text-label {
    fill: #ffffff;
    font-size: 16px;
    font-weight: bold;
}

.grid-line {
    stroke: #cccccc;
    stroke-dasharray: 4;
}

.data-point {
    fill: #ff6600;
    stroke: #004d00;
    stroke-width: 1;
}

.legend {
    font-size: 14px;
    font-weight: bold;
    fill: #004d00;
}

svg.froge-logo {
    width: 50px;
    height: 50px;
}

.footer {
    text-align: center;
    padding: 10px;
    background-color: #004d00;
    color: #ffffff;
}

.footer a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 10px;
}

.footer a:hover {
    text-decoration: underline;
}