.support-form-container {
    position: absolute;
    right: 20px;
    bottom: 20px;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    width: 250px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    font-family: sans-serif;
    z-index: 999;
}

.support-form-container h2 {
    margin: 0 0 10px;
    font-size: 16px;
}

label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
    font-size: 14px;
}

input,
select,
textarea {
    width: 100%;
    margin-bottom: 10px;
    padding: 8px;
    font-size: 14px;
    box-sizing: border-box;
}

button[type="submit"] {
    width: 100%;
    padding: 10px;
    background-color: #4caf50;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
}

button[type="submit"]:hover {
    background-color: #45a049;
}

/* Close button */
.close-btn {
    float: right;
    background-color: transparent;
    border: none;
    font-size: 18px;
    line-height: 18px;
    cursor: pointer;
    color: #999;
    margin-bottom: 10px;
}

.close-btn:hover {
    color: #000;
}

/* Success/Error Messages */
.success-message,
.error-message {
    margin-top: 10px;
    padding: 10px;
    border-radius: 4px;
    font-size: 14px;
}

.success-message {
    background-color: #d4edda;
    color: #155724;
}

.error-message {
    background-color: #f8d7da;
    color: #721c24;
}
