.headerText{
    text-align: center;
}

.headerSmallText{
    font-size: smaller;
    font-weight: 500;
    color: #036e5f;
    background-color: #c3c9d4;
    border-radius: 20px;
    padding: 5px 10px;
}

.btn-primary{
    width: 100% !important;
}

.btn-primary {
    color: #fff;
    background-color: #027565 !important;
    border-color: #027565 !important;
}

.btn-primary:hover{
    box-shadow:none !important;
    background-color: #016255 !important;
    border-color: #016255 !important;
}

.btn-primary:focus{
    box-shadow:none !important;
    background-color: #027565 !important;
    border-color: #027565 !important;
}

.zkLabel{
    color: #027565;
    font-weight: 700;
}

.zkDropdown{
    color: #000;
    width: 100%;
    background-color: #fff !important;
    border-color: #fff !important;
}
.zkDropdown:focus{
    background-color: #fff !important;
    border-color: #fff !important;
    box-shadow: none !important;
}
.zkDropdownMenu{
    background-color: #e8e8e8;
}

.dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #027565;
}

.dropdown-item:hover {
    color: #1e2125;
    background-color: #a5cac5;
}

.collapsible {
    background-color: #007565;
    color: white;
    font-size: 14px;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 1rem;
    font-weight: 500;
  }
  
  .active,
  .collapsible:hover {
    background: #006e5f;
  }
  
  .center-screen {
    /*  
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    */
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
  .zk_td_custom {
    color: #4b4b4b;
    font-weight: bold;
    font-size: 14px;
  }
  
  .zk_td_mobile {
    color: #4b4b4b;
    font-weight: bold;
    font-size: 2rem;
  }
  
  .zk_td_description {
    color: #007565;
    font-size: 14px;
    white-space: pre-wrap;
    word-wrap: break-word;
  }
  
  .outputFieldset1 {
    justify-content: center;
    align-items: center;
    flex: 0 0 40%;
    margin-right: auto;
    box-sizing: border-box;
    padding-bottom: 26px;
  }
  
  .outputFieldset2 {
    /*  position: relative */
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 0 55%;
    margin-left: auto;
    box-sizing: border-box;
    padding-top: 26px;
    padding-bottom: 26px;
  }
  
  .output-row {
    display: flex;
    margin-bottom: 10px;
  }
  
  .output-content {
    margin-top: 5px;
    margin-bottom: 5px;
    white-space: pre-wrap;
    word-wrap: break-word;
  }

  .legendStyle {
    position: absolute;
    top: -25px;
    left: 0px;
    background-color: white;
    color: #007565;
    font-size: large;
    font-weight: 600;
  }

  .emscripten {
    padding-right: 0;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  
  div.emscripten {
    text-align: center;
  }
  
  div.emscripten_border {
    border: 1px solid black;
  }
  
  [contenteditable] {
    outline: 0px solid transparent;
  }

  #output {
    width: 100%;
    height: 200px;
    margin: 0 auto;
    margin-top: 10px;
    border-left: 0px;
    border-right: 0px;
    padding-left: 0px;
    padding-right: 0px;
    background-color: black;
    color: white;
    font-family: "Lucida Console", Monaco, monospace;
    outline: none;
    display: none;
    overflow: hidden;
  }

  .custom-dropdown {
    position: relative;
    display: inline-block;
  }

  .custom-dropdown-toggle {
    cursor: pointer;
  }

  .custom-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #e8e8e8; /* Match the gray color of Bootstrap dropdown */
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2); /* Shadow to match Bootstrap */
    z-index: 1000;
    min-width: 100%;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
  }

  .custom-dropdown-menu .dropdown-item {
    padding: 0.5rem 1rem;
    cursor: pointer;
    color: #1e2125; /* Match Bootstrap text color */
    background-color: #e8e8e8; /* Match the background color */
  }

  .custom-dropdown-menu .dropdown-item:hover {
    background-color: #a5cac5; /* Light greenish-gray on hover */
    color: #1e2125;
  }

  .custom-dropdown-menu .dropdown-item:active {
    background-color: #027565; /* Active state color matching primary button color */
    color: #ffffff; /* White text on active */
  }

  .dropdown-label {
    color: #007565; /* Adjust to match your theme color */
    margin-bottom: 0.5rem;
    font-size: 1rem; /* Adjust font size if necessary */
  }