#report-error-btn {
    background-color: #FF4D4F;
    color: #ffffff;
    border: 1px solid #FF4D4F;
    border-radius: 10px;
    position: relative;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

#report-error-btn:hover {
    background-color: #e04344;
    border-color: #e04344;
}

#send-error-btn {
    background-color: #003594;
    color: #fff;
    border-radius: 10px;
    border: 1px solid #003594;
    transition: background-color 0.3s ease;
}

#send-error-btn:hover {
    background-color: #002060;
}

#cancel-error-btn {
    border-radius: 10px;
}

#report-error-form input[readonly] {
    background-color: #e9ecef;
    cursor: not-allowed;
}
