/* Shared CSS for the Login and Main Page */

body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-container {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
}

h1 {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.input-group {
    margin-bottom: 1rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button[type="submit"] {
    width: 100%;
    padding: 0.75rem;
    background-color: #007bff;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
}

button[type="submit"]:hover {
    background-color: #0056b3;
}

/* Styles for the Main Page */
.parrot-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#not-authenticated, #authentication-required {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
}

.parrot-emoji {
    font-size: 10rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.parrot-emoji:hover {
    transform: scale(1.1);
}

.recording {
    color: red;
    font-size: 1.25rem;
    margin-top: 1rem;
}

/* Styles for the Parrot Transcript */
#parrot-transcript {
    background-color: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    max-width: 600px;
    line-height: 1.5;
    font-size: 1rem;
    text-align: left;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    max-height: 200px;
}

/* Footer Styles */
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    text-align: center;
    padding: 1rem;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
    color: #333;
}

footer p {
    margin: 0.2rem;
}