body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f4f7f6;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 500px;
    width: 100%;
}

h1 {
    color: #0052cc;
    margin-bottom: 1rem;
}

#status {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #555;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

button {
    background-color: #0052cc;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #003b8e;
}

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

.transcript-container {
    text-align: left;
    background-color: #f4f7f6;
    padding: 1rem;
    border-radius: 5px;
    height: 200px;
    overflow-y: auto;
    border: 1px solid #ddd;
}

#transcript {
    font-family: "Courier New", Courier, monospace;
}
