#formResponse {
    padding: 10px;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
    position: relative;
    margin-top: 20px;
    display: none;
}
#closeButton {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    color: rgb(255, 0, 0);
}
#loadingIcon {
    display: none; /* Hidden by default */
    position: flex;
    margin: 10px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Example spinner animation */
.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top: 4px solid #3498db;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}