/* Base styling */
body {
    background-color: #dbdbdb;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.main-container {
    text-align: center;
}

/* Heading */
h1 {
    margin-bottom: 2rem;
    font-size: 2.2rem;
    color: #333;
}

/* Wrapper */
.wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Textarea */
#text {
    width: 800px;
    height: 200px;
    padding: 20px;
    font-size: 20px;
    resize: none;
    border-radius: 12px;
    border: none;
    background-color: #cdcdcd;
    color: #222;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

/* Mic Button */
.playButton {
    width: 70px;
    height: 70px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.playButton:hover {
    box-shadow: 0 6px 20px 0 #00ff15;
    transform: scale(1.1);
}

/* Instruction text */
.instruction {
    margin-top: 10px;
    font-size: 1rem;
    color: #444;
}
