/* styles.css */
.vcc-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    margin: 20px auto;
    text-align: center;
}

.vcc-container h1 {
    color: #333;
    margin-bottom: 20px;
}

.vcc-display {
    font-size: 1.5em;
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
}

#vcc-microphone {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 50%;
    font-size: 1.5em;
    cursor: pointer;
}

#vcc-microphone:hover {
    background-color: #0056b3;
}