/* Error Container */
#Pre-Chart {
    font-family: inherit;
    font-size: 14px;
    color: #E63946; /* Red for errors */
    margin-top: 16px;
    padding: 8px;
    border: 1px solid #E63946;
    border-radius: 4px;
    background-color: #fff8f8; /* Subtle light red background */
    max-width: 400px; /* Adjust as needed for your layout */
    transition: all 0.3s ease; /* Smooth adjustments for height changes */
}

/* Error Items */
#Pre-Chart div {
    margin-bottom: 8px;
    line-height: 1.5;
    /* Error Text in Container */
    color: #E63946; /* Red for errors */
    font-weight: bold;
    margin-bottom: 8px;
}



/* Placeholder */
#Pre-Chart:empty::before {
    content: "All inputs are valid";
    color: #4CAF50; /* Green for valid state */
    font-style: italic;
    display: block;
    text-align: center;
}

/* Error Labels */
.error {
    color: #E63946;
    font-weight: bold;
    transition: color 0.3s ease; /* Smooth transition for styling */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    #Pre-Chart {
        font-size: 12px;
        padding: 6px;
    }
}
