.msg_enabled {
    display: unset;   
}

.msg_disabled {
    display: none;
}

p.helpdesk_notice {
    text-align: left;
}

p.helpdesk_notice + p {
    text-align: left;
    margin: 2em auto;
}

p.helpdesk_notice img {
    padding: 0;
    margin: -5px;
    display: block;
    height: 5em;
}

/* General form styling */
#upload_param_form {

    padding: 20px 40px;
    background-color: #f7f7f7;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
    display: block;
    width: 80%;
    margin: 0 auto 10px;
    text-align: left;
}

#upload_param_form.sbox p {
  margin: 0 0 10px 0;
}

#helpdesk_message {
    max-width: 600px;
    padding: 20px 40px;
    background-color: #f7f7f7;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
    margin: 0 auto;
    margin-bottom: 3em;
}

.preview_message {
    padding: 10px;
    font-size: .8em;
    color: #212121;
    border-radius: 2px;
    border: 1px solid;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

}

/* Form input fields */
form#help_form div {
    margin: 20px 0px;
    text-align: left;
}

/* Labels */
form#help_form label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    text-align: left;
}

/* Input fields */
form#help_form input[type="text"],
form#help_form input[type="email"],
form#help_form select,
form#help_form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
}

/* Textarea */
form#help_form textarea {
    resize: vertical;
}

/* Submit button */
#upload_param_form .btn {
    display: inline-block;
    padding: .5em 2em;
    background-color: #03356f;
    color: #fff;
    border: none;
    border-radius: 2px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#upload_param_form .btn-reset {
  background-color: #555;
}

#upload_param_form .verify_list dd {
  position: relative;
}

#upload_param_form .verify_list dd {
  margin: 3px 0 5px 20px;
}

#upload_param_form .verify_list input {
  position: absolute;
  left: -25px;
}

form#help_form .btn:hover {
    background-color: #0056b3;
}

#ticket_submit_btn:disabled,
#ticket_submit_btn[disabled] {
    background-color: #524a4a;
    color: #c1c1c1;
}

/* reCAPTCHA styling */
.grecaptcha-badge {
    display: none; /* Hide the default badge */
}

/* Description paragraph */
form#help_form p {
    font-size: 14px;
    color: #666;
    margin-top: -5px;
    margin-bottom: 10px;
}

.help_block {
    color: #a03030;
    font-size: .8em;
    margin-left: 4px;
    margin-top: 0.2em;
    margin-bottom: 10px;
    transition: 300ms;
    display: none;
}

#help_form.show_warning .help_block {
    display: block;
}

/* Responsive design */
@media (max-width: 768px) {
    #upload_param_form {
        padding: 15px;
    }

    form#help_form input[type="text"],
    form#help_form input[type="email"],
    form#help_form select,
    form#help_form textarea {
        width: calc(100% - 20px);
    }

    form#help_form .btn {
        font-size: 16px;
    }
}


/* Styling for documentation pages, included in  */
/* header_NStED_docs.html, along with fixed.css  */
/* and style.css                                 */

.docs
{
  font-size: small;
  padding: 5px;
  margin: 5px;
  border: 0px solid #000;
}
 
.docs h1 
{
  text-align: left;
  width: 100%;
  font-size: 130%;
  margin: 0 5px 0 0;
  padding: 5px 3px 5px 0;
  border-bottom: 3px solid #0000cc;
}

.docs h2
{
  text-align: left;
  padding: 0;
  margin: 20px 0 3px 0;
  font-size: 110%;
  font-weight: bold;
}

.docs h3
{
  text-align: left;
  padding: 0;
  margin: 10px 0 5px 0;
  font-size: 100%;
  font-weight: bold;
}

.docs ul { 
 margin: 0 0 0 20px;
 padding: 0px 0px 5px 5px;
 text-align: left;
 margin-left: 1em;
 overflow: hidden; 
}

.docs ol li {
	margin-bottom: 3px; 
    position: relative;
    left: 1em;
    padding-right: 1em;   
}

.docs ol { 
 margin: 0 0 0 20px;
 padding: 0px 0px 5px 5px;
 text-align: left;
 margin-left: 1em;
 overflow: visible; 
}

.docs dl { width: 80%; margin-left: 5%; }
.docs dt { font-weight: bold; }

.docs .spaced_list li {margin-bottom:10px; }

.docs .toc {
	float: left;
	border: thin solid #666; 
	margin: 10px; 
	padding: 0 10px; 
	text-align:left;
}


.docs .toc-right {
	float: right;
	border: thin solid #666; 
	margin: 10px; 
	padding: 0 10px; 
	text-align:left;
}


.docs p {
    text-align: justify;
}

.docs table
{
  margin: 10px auto 2px auto;
  border: 0px solid #000000;
  border-collapse: collapse;
  width: 100%;
}

.docs .half_table {
  width: 350px;
}

.docs .half_table th,
.docs .half_table td {
   text-align:center;
   vertical-align: middle; 
}


.docs table.text_gray 
{
	color: #CCC
}


.docs ul {
    list-style: outside disc;
    margin-left: 1em;
}

.docs ul li {
    position: relative;
    left: 1em;
    padding-right: 1em;    
}

.docs caption
{
  margin: 10px auto 0px auto;
  font-weight: bold;
  text-align: center;
  padding: 4px 4px 2px 4px;
}

.docs th
{
  background-color: #b0c4de;
  text-align: center;
  vertical-align: center;
  padding: 2px;
  margin: 0;
  border: 1px solid #000000;
}

.docs .doc_index th
{
  text-align:center;
}

.docs .doc_index td
{
  padding: 5px;
}

.docs tr
{
  padding: 0;
  margin: 0;
}



/* A table cell of class "inline_caption" mocks */
/* a new caption, but without starting a new    */
/* table, to force all tables to have cells of  */
/* equal widths that line up nicely.            */
.docs .inline_caption
{
  background-color: #ffffff;
  color: #000000;
  text-align: center;
  padding-top: 15px;
  font-size: 110%;
  border: 0;
}
.docs td
{
  background-color: #e2eeff;
  text-align: left;
  vertical-align: top;
  padding: 2px;
  border: 1px solid #000000;
  margin: 0;
}

.docs .centered 
{
  text-align: center
}

/* Give formulas some indentation */
.docs .formula { margin-left: 140px; }

/* Abbreviations in a different color */
.docs .abb { color: red; background-color: inherit; }

/* Images with captions: use im_cap div with img then p */
.docs .im_cap
{
  text-align: center;
}
.docs .im_cap img
{
  border: 1px solid #000000;
}
.docs .im_cap p
{
  text-align: center;
  width: 90%;
  font-style: italic;
  font-size: 90%;
}

.docs .im_inline_right
{
  float: right;
  padding-left: 5px;
  padding-bottom: 5px;
  border: 0;
}

/* Close button on popups */
.close
{
    text-align: center;
    margin-top: 2em;
}

.docs .page_controls {
    line-height: 25px;
}

.docs .page_controls a {
  font-style: italic;
  text-decoration: none;
  background-color: #ddd;
  display: inline-block;
  padding: 0px 10px 4px;
  border-radius: 3px;
  color: #444;
  border:thin solid #aaa;
}

.docs .page_controls a:hover {
  color: #000;
  background-color: #ccc;
}

.docs .page_controls strong {
  font-style: normal;
}

.docs .page_controls strong i {
  font-style: normal;
  font-size: 25px;
  position: relative;

  top: 2px;
}

.docs .page_controls .prev_button strong {
  padding-right: 10px;
}

.docs .page_controls .next_button {
  float: right; 
}

.docs .page_controls .next_button strong {
  padding-left: 10px;
}

.status_message {
  background-color: #ffe4e4;
  padding: 10px 20px;
  border-radius: .5rem;
  margin-bottom: 10px;
}

.status_message.upload_param_success {
  background-color: #d7f1df;
  margin-top: 10px;
}

.status_message.upload_param_login_required {
  background-color: #deebff;
  margin-top: 10px;
}

.status_message h3 {
  margin: 10px 0px;
}