/* Styles for prediction note in dark mode */
body.dark-mode .prediction-note {
    color: #a0e6ff !important; /* Bright blue color for text */
    background-color: rgba(66, 153, 225, 0.2) !important;
    border: 1px solid rgba(66, 153, 225, 0.4) !important;
}

/* Base styles for prediction note in any mode */
.prediction-note {
    font-size: 0.9rem !important;
    margin-top: 10px !important;
    padding: 6px 10px !important;
    border-radius: 4px !important;
    background-color: rgba(66, 153, 225, 0.15) !important;
    border: 1px solid rgba(66, 153, 225, 0.3) !important;
    display: inline-block !important;
    color: #3182ce !important; /* Default blue color */
}

/* Add icon styling */
.prediction-note i {
    margin-right: 4px;
}
