/* Style the form container */
.energy-arbitrage-form {
    max-width: 80%;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Style input fields */
.energy-arbitrage-form input,
.energy-arbitrage-form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

/* Style the button */
.energy-arbitrage-form button {
    width: 100%;
    padding: 10px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.energy-arbitrage-form button:hover {
    background-color: #005a8c;
}

/* Style the result display */
#arbitrage-result {
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

/* Style the plot image */
#arbitrage-plot {
    margin-top: 20px;
    max-width: 100%;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#arbitrage-chart {
    max-width: 100%;
    margin-top: 20px;
}