body {
    margin: 0;
    padding: 0;
    height: 100vh;
    background: #0e0e0e; /* Dark background */
    overflow: hidden;
    color: grey;
}

.rain-container {
    position: absolute;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: -100;
}

.content {
    width: 600px;
    padding: 100px;
    margin: auto;
    align-content: center;
}

.drop {
    position: absolute;
    top: -100px; /* Start slightly off the top of the screen */
    width: 1px; /* Thinner raindrops */
    height: 80px; /* Taller to represent long raindrops */
    background: rgba(255, 255, 255, 0.2); /* Transparent white for rain */
    animation: fall linear infinite;
}

@keyframes fall {
    to {
        transform: translateY(120vh); /* Ensure raindrops fall off-screen */
    }
}

#feedback {
    border: 0px solid #000;
    padding: 10px;
    margin-top: 10px;
    height: 200px; /* Set a fixed height */
    width: 100%; /* Optional: Set width if needed */
    overflow-y: auto; /* Enable vertical scrollbar */
    overflow-x: hidden; /* Hide horizontal scrollbar if not needed */
}

#feedback::-webkit-scrollbar {
    width: 12px; /* Adjust width as needed */
}

/* Style the scrollbar handle (part that you drag) */
#feedback::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.342); /* Black color */
    border-radius: 6px; /* Optional: rounded corners */
}

/* Optional: style the scrollbar track */
#feedback::-webkit-scrollbar-track {
    background: transparent; /* Light background for the track */
}

.inputWrapper {
    /* border: 1px solid red; */
    width: 100%;
    align-content: center;
    padding-top: 20px;
}

#text-input {    
    display: block;  /* Make Block type */
    margin: auto;    /* Auto margin */
    width: 100%;     
    background-color: #0e0e0e;
    color: grey;
}

/* This stops LastPass from adding an icon to a text box */
[data-lastpass-icon-root] {  display: none !important; }
#div_container_to_disable_lastpass [data-lastpass-icon-root] { display: none !important; }