/* styles.css */
#mic-result {
    width: 100%;
    max-width: 400px; /* Ensures the result container doesn't become too wide */
    margin: 0 auto;
    padding: 15px;
}

#mic-result .premium-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2b6cb0; /* Blue color */
}
.bg-blue-500{
background-color: rgb(0 92 169)!important;
}
@media screen and (max-width: 640px) {
    #mic-result {
        width: 90%;
        max-width: 350px;
        padding: 15px;
    }
}