.container {
    max-width: 600px;
    margin: 4rem auto;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    text-align: center;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    margin-top: 10px;
    border: none;
    border-radius: 8px;
    background-color: #4f46e5;
    color: white;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

button:hover {
    background-color: #3730a3;
}

.status {
    margin-top: 1rem;
    font-weight: bold;
}

#transcriptContainer {
    margin-top: 1.5rem;
}

input[type="text"] {
    padding: 8px;
    width: 80%;
    margin-top: 0.5rem;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.hidden {
    display: none;
}
