body {
    font-family: 'Inter', sans-serif;
    margin: 20px;
    text-align: center;
}
#recordButton {
    width: 80px;
    height: 80px;
    font-size: 36px;
    border: none;
    border-radius: 50%;
    background-color: white;
    cursor: pointer;
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.2s ease;
}
#recordButton.recording {
    background-color: #ff4d4d;
    color: white;
}
#recordButton:active {
    transform: scale(0.95);
}
#status {
    margin-top: 20px;
    font-size: 16px;
    color: #333;
}
#linesTranscript {
    margin: 20px auto;
    max-width: 600px;
    text-align: left;
    font-size: 16px;
    white-space: pre-wrap;
}

#linesTranscript {
    font-weight: bold;
    color: black;
}

#summary {
    visibility: hidden;
}

#summarycontent {
    font-weight: bold;
    margin-top: 20px;
}

#passwordInput {
    width: 80%;
    max-width: 300px;
    padding: 10px;
    font-size: 16px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}