body {
    font-family: "Press Start 2P", system-ui;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    background-color: #FFF;
}

button {
    font-family: "Press Start 2P", system-ui;
    padding: 10px 20px;
    font-size: 16px;
    margin: 10px 0;
    cursor: pointer;
    border: 1px solid #000;
    background-color: #FFF;
    color: #000;
}

button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

audio {
    margin-top: 20px;
    width: 100%;
    max-width: 600px;
    height: 40px;
    border: none;
    outline: none;
    background-color: #f0f0f0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.transcription {
    margin-top: 20px;
    padding: 10px;
    background-color: #fff;
    width: 100%;
    max-width: 600px;
    color: #000;
}

#promptText {
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
}

.visualizer {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #000;
    margin: 20px 0 50px;
    display: block;
    transform: scale(1);
    transition: transform 0.1s ease-out;
    box-shadow: 0 0 20px rgba(51, 51, 51, 0.4);
} 