#root {
  margin: 0 !important;
  padding: 0 !important;
  font-family: Arial, helvetica, sans-serif;
  font-size: 12px;
}

/*br {*/
/*  display: none;*/
/*}*/


/*!* For grid container *!*/
/*.MuiGrid-container {*/
/*  border: 1px solid red;*/
/*  box-sizing: border-box;*/
/*}*/

/*!* For grid items *!*/
/*.MuiGrid-item{*/
/*  border: 1px solid red;*/
/*  box-sizing: border-box;*/
/*}*/

 /*For grid container*/
/*.MuiGrid2-container {*/
/*  border: 1px solid green;*/
/*  box-sizing: border-box;*/
/*}*/

/*!* For grid items *!*/
/*.MuiGrid2-root{*/
/*  border: 1px solid red;*/
/*  box-sizing: border-box;*/
/*}*/

.gridRoot {
  min-height: 100vh;
}

#content {
  overflow-wrap: anywhere;
}


.debugPosition {
  background-color: rgba(255, 0, 0, 0.2);
  outline: 2px dashed blue;

}

.debugPosition::after {
  /*content: attr(class) " - Width: " attr(width) " Height: " attr(height);*/
  display: block;
  color: green;
}

.error {
  color:red;
}

.textAlignLeft {
  text-align: left;
}

.textAlignRight {
  text-align: right;
}

a:visited {
  color: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

.instructions-content a {
  text-decoration: underline; /* Example: making it underline */
  color: blue; /* Example: changing color to blue */
}

body {
  min-height: 100vh;
  /*background: linear-gradient(#053370, #145db1) no-repeat;*/
  padding: 0;
  margin: 0;
}

html {
  padding: 0 !important;
  margin: 0 !important;
}

.wrap-text {
  white-space: pre-wrap;
  overflow-wrap: break-word;
  align-items: flex-start;
  padding: .5em
}

[class*="col-"] {
  /*border: solid red 1px;*/
}

@font-face {
  font-family: 'Bitter';
  /*noinspection CssUnknownTarget*/
  src: url('/static/fonts/Bitter-Regular.otf');
}

@font-face {
  font-family: 'Bitter Bold';
  /*noinspection CssUnknownTarget*/
  src: url('/static/fonts/Bitter-Bold.otf');
}

.displayMobileOff {
  display: none;
}

@media only screen and (min-width: 450px) {
  .displayMobileOff {
    display: initial;
  }
}


@media only screen and (min-width: 810px) {
  .displayMobileOff {
    display: initial;
  }
}


@media only screen and (min-width: 1000px) {


}


body {
    background-color: #121212; /* Dark background color */
}
/* Dark Mode Styling */
.errorBody {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2em 1em;
    text-align: center;
    background-color: #121212; /* Dark background color */
    color: #ffffff; /* Light text color */
    height: 100vh;
}

.errorHeading,
.errorSubHeading {
    margin-bottom: 1em;
}

.errorTitle {
    font-size: 2rem;
    margin: 0;
    color: #ffffff; /* Accent color for title */
}

.errorText {
    font-size: 1rem;
}

#networkErrorInstructions {
    max-width: 100%;
    margin: 1em 0;
}

.networkErrorList {
    width: 100%;
    text-align: left;
    padding: 0;
    list-style: none;
    color: #ffffff; /* Light text color */
}

.networkErrorList li {
    margin: 0.5em 0;
    border-left: 4px solid #66b2ff; /* Accent color for list items */
    padding-left: 0.5em;
}

.buttonContainer {
    display: flex;
    gap: 1em;
    flex-wrap: wrap;
    justify-content: center;
}

.errorButton {
    padding: 0.5em 1em;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    color: #ffffff; /* Light text color */
    transition: background-color 0.3s; /* Smooth transition for background color */
}

.reportColor {
    background-color: #ff6666;
}

.reportColor:hover {
    background-color: #ff4d4d; /* Slightly lighter on hover */
}

.reloadColor {
    background-color: #66b2ff;
}

.reloadColor:hover {
    background-color: #4d94ff; /* Slightly lighter on hover */
}

.errorDetailsContainer {
    margin-top: 2em;
    width: 100%;
    text-align: left;
    color: #ffffff; /* Light text color */
}

.errorDetails {
    margin: 1em 0;
    background-color: #1e1e1e; /* Slightly lighter background for error details */
    padding: 1em;
    border-radius: 5px;
    overflow-x: auto; /* Ensure content is scrollable if too wide */
}

.errorSummary {
    cursor: pointer;
    outline: none;
    color: #66b2ff; /* Accent color for summary */
}

pre {
    white-space: pre-wrap; /* Wrap preformatted text */
    word-wrap: break-word; /* Wrap long words */
    color: #ffffff; /* Light text color */
}

