#user-support{
    width: fit-content;
    max-width: 400px;
    height: fit-content;
    position: absolute;
    background-color: white;
    border-radius: 40px;
    top: 51%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    text-align: center;
}

.user-support-divs{
    width: 250px;
    margin: 10px auto;
    padding: 15px;
    text-align: center;
    background-color: #f0f0f0;
    border-radius: 20px;
    cursor: pointer;
    font-size: 1.2em;
    transition: background-color 0.3s, transform 0.2s;
}


/* Bug Report Screen */
#bug-report-screen {
    width: 80%;
    max-width: 400px;
    height: fit-content;
    position: absolute;
    background-color: white;
    border-radius: 40px;
    top: 51%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    padding-bottom: 30px;
    overflow: auto;
    text-align: center;
}
#bug-report-description {
    width: 90%;
    height: 180px;
    margin-top: 10px;
    border-radius: 15px;
    padding: 10px;
    font-size: 16px;
    resize: none;
}
#bug-report-error {
    color: red;
    margin-top: 10px;
    font-weight: bold;
}
#bug-report-success {
    margin-top: 20px;
    font-weight: bold;
}

/* Contact Us Screen */
#contact-us-screen {
    width: 80%;
    max-width: 400px;
    height: fit-content;
    position: absolute;
    background-color: white;
    border-radius: 40px;
    top: 51%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    padding-bottom: 30px;
    overflow: auto;
    text-align: center;
}
#contact-us-description {
    width: 90%;
    height: 180px;
    margin-top: 10px;
    border-radius: 15px;
    padding: 10px;
    font-size: 16px;
    resize: none;
}
#contact-us-error {
    color: red;
    margin-top: 10px;
    font-weight: bold;
}
#contact-us-success {
    margin-top: 20px;
    font-weight: bold;
}