/* styles.css */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
}

body {
    min-height: 100vh;
}

.container {
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.hidden {
    display: none;
}

button {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

input[type="color"] {
    margin-left: 10px;
}

#recorder {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#startStopButton {
    background-color: #007BFF;
    color: white;
}

#startStopButton.recording {
    background-color: #FF0000;
}
