body, input, button, h1, h2, p {
    font-family: 'Roboto', sans-serif;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 10px;
    color: #333;
}

.header h1 {
    color: #e15b5b;
    font-size: 2rem;
}

.header p {
    font-size: 1rem;
    margin-bottom: 20px;
}

.main-content {
    background: #ecf0f1;
    padding: 20px;
    border-radius: 8px;
}

.calculator-step h2 {
    color: #000;
    margin-bottom: 10px;
}

.input-group input, .input-group button {
    padding: 10px;
    margin: 5px;
    border-radius: 4px;
    border: 1px solid #000;
    font-size: 1rem;
}

 

.input-group button {
    background-color: #e15b5b;
    color: white;
    cursor: pointer;
    border: none;
}
 
.input-group button:hover {
    background-color: #000;
}

.hidden {
  display: none;
}

#calculate-revenue-impact-btn {background:black;}

#calculate-revenue-impact-btn:hover {background:#e15b5b;}

.potatoe {border-bottom:1px solid;}

a.potatoe {color: #e15b5b;}

a {text-decoration:none;color:black;}

.output-group {
    background: white;
    padding: 35px;
    margin-top: 20px;
    border-left: 4px solid #e15b5b;
    text-align: left;
}

.chart-container {
    margin-top: 20px;
    padding: 15px;
}

.chart-container canvas {
    width: 100%;
    height: 400px;
}

