/*
  Project: TroubleshootAR
  Description: Stylesheet for layout and instructional content.
  Author: Dominique Thomas (github.com/dominique-thomas)
  License: Shared publicly for demonstration purposes only. Reuse or redistribution not permitted without permission.
*/
body{
    font-family: 'Montserrat', sans-serif;
}

h1, h2, h3, h4 {
    font-weight: 700;
}
  
p {
    font-weight: 400; 
}

.centered-image {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  height: auto;
}

.popup{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2000;
    background-color: #252534;
    border-radius: 15px;
    padding: 20px;
    width: 80%;
    max-width: 400px;
    overflow-y: auto;
  }

  @media (max-width: 600px) {
    .popup {
      width: 75%; 
      max-width: 300px; 
    }
  }

  .container {
    color: #f5f5f5;
  }
  
  .container h2 {
   text-align: center;
   margin-top: 20px;
   font-size: larger;
   color: #9fa2ff;
   margin-bottom: 0;
  }

  @media (max-width: 600px) {
    .container h2 {
      margin-top: 35px; 
    }
  }

  .container p {
    font-size: 15px;
    color: #f5f5f5;
    margin-bottom: 15px;
  }

  
  .close{
    background-color: #464766;
    color: #f5f5f5;
    border: none;
    font-size: 18px;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Font Awesome 5 Free', sans-serif;
    position: absolute;
    top: 10px;
    right: 10px;
  }
  
  .close:hover {
    background-color: #363750;
  }
  
  .close:focus {
    outline: none;
  }
  
  .container hr {
    border: 1px solid #464766;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  
  .action-button {
    background-color: #464766;
    color: #f5f5f5;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s ease;
    font-weight: bold;
    font-size: 16px;
  }

  .full-width{
    width: 100%;
  }
  
  .action-button:hover {
    background-color: #363750;
  }

  .emphasis{
    color: #9fa2ff;
  }

  .divider {
    border: none;
    height: 1px;
    background-color: #464766;
    margin: 12px 0;
  }
  
  .hidden{
    display: none !important;
  }

  label {
    display: block;
    padding-left: 15px;
    text-indent: -15px;
    font-weight: bold;
    color: #fff;
  }
  
  textarea {
    display: block;
    width: 95%;
    margin-top: 5px;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #464766;
    border-radius: 4px;
    background-color: #fff;
    resize: none;
    outline: none;
  }
  
  textarea {
    height: 100px;
  }
  
  .checklist-title{
    margin-top: 0px !important;
    color:#e0e0ff !important;
    font-weight: normal;
  }

  .checklist-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }
  
  .checklist-item input[type="checkbox"] {
    accent-color: #9fa2ff !important;
  }

  .checklist-item input {
    margin-right: 10px;
  }

  .checklist-item > label {
    font-weight: normal !important;
  }
  
  .checklist-label label {
    font-size: 15px;
    color: #f5f5f5;
    padding-bottom: 15px;
  }

  .spacer{
    padding-top: 10px;
  }

  .summary-item{
    padding-bottom: 10px;
  }

  .summary-item label {
    font-size: 16px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
  }
  
  .summary-item p {
    font-size: 14px;
    color: #f5f5f5;
    margin-top: 5px;
    padding-left: 10px;
    border-left: 3px solid #464766;
  }
  
  .summary-container h2 {
    text-align: center;
    margin-top: 0;
  }
  
  .summary-container {
    padding: 20px;
    max-height: 500px;
    overflow-y: auto;
  }

  a{
    color:#9fa2ff;
  }  
 
  .finish-button, .about-button{
    padding: 10px;
    cursor: pointer;
    border-radius: 8px;
  }
 
  .button-container{
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    display: flex;
    justify-content: space-between;
    gap: 10px; 
    z-index: 1000;
  }
  
  .markers-inspected{
    border-radius: 8px;
    background-color: #e0e0ff;
    color: #311152;
    padding: 12px 20px;
    margin-top:10px;
  }

  .warning {
    background-color: #ffcccc;
    color: #660000;
    padding: 12px 20px;
    font-size: 16px;
    border: 1px solid #cc0000;
    border-radius: 6px;
    text-align: center;
    margin: 10px;
    font-family: sans-serif;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }

  .warning-header{
    font-weight: bold !important;
  }
