/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #bdef9c;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.tts-container {
    background-color: #fff;
    padding: 30px 20px;
    width: 500px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tts-container h1 {
    text-align: center;
    color: #333;
}

#textInput {
    width: 100%;
    height: 150px;
    padding: 15px;
    border-radius: 15px;
    border: 1px solid #ccc;
    resize: none;
    font-size: 16px;
}

.tts-controls {
    display: flex;
    gap: 10px;
}

select {
    flex: 7;
    padding: 10px 15px;
    border-radius: 25px;
    border: 1px solid #ccc;
    font-size: 14px;
}

#listenBtn {
    flex: 3;
    padding: 10px 15px;
    border-radius: 25px;
    border: none;
    background-color: #007bff;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.3s;
}

#listenBtn:hover {
    background-color: #0056b3;
}

.listen-icon {
    font-size: 18px; /* placeholder for SVG size */
}
