/* INDEX  :::::::::::::::::General Styles:::::::::::::::::::: */
    body {
      font-family: Arial, sans-serif;
      text-align: center;
      font-size: 16px;
      color: #e1e3e8;
      background-color: #283040;
      margin: 0;
      padding: 0;
    }

    /* Logo Header */
    .logo-header {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: center;
      border-bottom: 1px solid #21435f;
      background: #1e2630;
      position: relative;
      width: 100%;
      height: 55px;
    }   



    @media (max-width: 600px) {
      .logo-header {
        height: 50px;
      }
    }

    .logo-header img {
      width: 35px;
      margin-right: 10px;
      height: auto;
      max-width: 80px;
      box-shadow: 0px 5px 5px rgba(39, 133, 201, 0.9);
      border-radius: 50px;
      filter: invert(1) brightness(0.9) contrast(0.6) hue-rotate(180deg) saturate(2);
    }
        @media (max-width: 992px) {
      .logo-header img {
        max-width: 28px;
      }
    }

    @media (max-width: 600px) {
      .logo-header img {
        max-width: 24px;
      }
    }

    /* Hover Zoom Effect */
    .hover-zoom {
      display: flex;
      transition: transform 0.3s ease; /* Smooth zoom effect */
    }
    /* Hover effect */
    .hover-zoom:hover {
      transform: scale(1.1); /* Zoom in on hover */
    }
    /* Hover Zoom Effect */
    .hover-zoom1 {
      display: flex;
      transition: transform 0.3s ease;
      max-width: 80px;
      min-width: 60px;
      justify-content: flex-end;
      margin-right: 5px;
    }
    /* Hover effect */
    .hover-zoom1:hover {
      transform: scale(1.1);
    }
    @media (max-width: 600px) {
      .hover-zoom1 {
        scale: 0.9;
        min-width: 57px;
      }
    }

    textarea {
      height: 100px;
      padding: 10px;
      border: 1px solid #6392f8;
      border-radius: 4px;
      resize: vertical;
      font-size: 14px;
      color: #e1e3e8;
      background-color: rgba(99, 146, 248, 0.1);
    }
.comments .comments-section > form textarea {
    margin: 0px auto;
}
.reply-form textarea {
    margin: 0px auto;
}

    /* File Input */
    input[type="file"] {
      font-size: 18px;
      margin: 20px auto;
      width: 300px;
      background-color: rgba(99, 146, 248, 0.1);
      box-shadow: 0px 3px 8px 4px #6392f8;
      border: 1px solid #6490eb;
      border-radius: 5px;
      cursor: pointer;
      padding: 0px;
    }
input[type="file"]:hover {
    opacity: 0.9;
} 

    /* Editor Note */
 .editornote {
    padding: 5px;
    font-weight: 700;
    font-size: 47%;
    line-height: 90%;
    text-align: center;
    display: flex;
    flex-direction: row;
    width: 90%;
    justify-content: center;
    align-items: center;
    }

    @media (min-width: 992px) {
      .editornote {
        font-size: 65%;
      }
    }

    @media (max-width: 600px) {
      .comments-section {
        width: 350px;
        font-size: 80%;
      }
    }
    /* Link Styles */
    a {
      color: #63a4ff;
    }

    a:active {
      color: #63a4ff;
    }

    a:hover {
      text-decoration: underline;
      color: #337ab7;
    }

    a:visited {
      text-decoration: none;
    } 

    #my_site_title {
      flex-grow: 1;
      text-align: center;
      margin: 0 10px;
    }

    #my_site_title h4 {
      margin: 0;
      font-family: Arial, sans-serif;
      font-size: 16px;
      color: #e1e3e8;
      font-weight: 700;
      text-shadow: 1.414px 1.414px 0 rgba(0, 0, 0, 0.3);
    }

    .pkp_site_nav_menu {
      word-spacing: 3px;
      background-color: rgba(99, 146, 248, 0.85);
    }
button.pkp_site_nav_toggle {
    background: #1e2630;
    border: none;
}

    .block-display {
      width: 15%;
      font-size: 110%;
      color: #6392f8;
    }
    .block-display h4 {
      margin: 3px auto;
    }
.descr {
    width: 800px;
    max-width: 92%;
    margin: 10px auto;
    font-size: 16px;
    color: #e1e3e8;
    background-color: #283040;
    padding: 15px;
    text-align: left;
    line-height: 1.6;

}
    @media (max-width: 600px) {
      .descr {
        font-size: 14px;
      }
    }

      .level {
        font-size: 15px;
        font-weight: 400;
        color: #98acd7;
        text-align: center;
        line-height: 23px;
        margin-top: 40px;
      }
      #play {
        margin-bottom: 0px;
        font-size: 100%;
      }

    @media (max-width: 600px) {
      #play {
        font-size: 90%;
      }
    }
      #level {
        color: #00bcf2;
        margin: 5px auto;
        font-size: 130%;
      }

    @media (max-width: 600px) {
      #level {
        font-size: 110%;
      }
    }

        .form-group {
            margin: 20px auto;
            display: flex;
            flex-direction: column;
        }

        #uploadForm {
           max-width: 400px;
           margin: 30px auto;
           display: flex;
           flex-direction: column;
           align-items: center;
        }

        #metadataForm {
           max-width: 92%;
           margin: 30px auto;
        }

        input, textarea {
            width: 100%;
            box-sizing: border-box;
            font-size: 18px;
            margin: 20px auto;
            background-color: rgba(99, 146, 248, 0.1);
            border: 1px solid #6490eb;
            border-radius: 5px;
            cursor: pointer;
            color: #e1e3e8;
            padding: 5px;
        }

        input[readonly] {
            background-color: rgba(99, 146, 248, 0.6);
        }


 #message {
      color: #63a4ff;
    }

 textarea::placeholder {
      color: rgb(192 211 252 / .5);
    }


        button {padding: 10px; background-color: rgba(99, 146, 248, 0.35);
          border: 1px solid #6392f8; border-radius: 4px; color: #fff; font-size: 16px;cursor: pointer; transition: background-color 0.3s ease;}

    button:hover {
      background-color: #5591e6;
    }

        .app-link-btn {
            display: none;
            margin: 30px auto;
            padding: 10px;
            background-color: rgba(99, 146, 248, 0.35);
            border: 1px solid #6392f8;
            border-radius: 4px;
            color: #fff;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s ease;
            width: 300px;
            max-width: 92%;
        }
        .app-link-btn:hover {
            background-color: #5591e6;
        }


        .container {
            max-width: 800px;
            margin: 30px auto;
        }


        #uploadStatus {
            margin: 20px auto;
            width: 100%;
            max-width: 400px;
            background-color: rgba(99, 146, 248, 0.1);
            border: 1px solid #ccc;
            border-radius: 5px;
            overflow: hidden;
            position: relative;
            border: 1px solid #6392f8;
        }
        #uploadProgress {
            background-color: rgba(99, 146, 248, 0.5);
            height: 20px;
            width: 0;
            transition: width 0.3s ease;
        }
        #uploadProgressText {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #63a4ff;
            font-weight: bold;
        }

        .status-message {
            display: none;
            font-weight: bold;
        }

         .contright {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-end;
            margin-right: 5px;
        }   
        
         .logoright a {
            color: #b7bcc6;
            font-size: 75%;
            text-decoration: none;
            font-weight: bold;
            padding-top: 45px;
        }       
         .logorightlist a {
            color: #ffb900;
            font-size: 75%;
            text-decoration: none;
            font-weight: bold;
            padding-top: 45px;
        } 
       
       .steps {
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            margin: 20px auto

        }
        

/* HEADER:::::::::::::::::::::::::::::::::::::::::::::::::::::: */
    /* General Styles */
    .header {
      font-family: Arial, sans-serif;
      text-align: center;
      font-size: 16px;
      color: #e1e3e8;
      background-color: #283040;
      margin: 0;
      padding: 0;
    }

    /* Horizontal Layout */
    .wb_content.wb-layout-horizontal {
      display: flex;
      justify-content: center;
      background-color: #6392f8; /* Background color */
      height: 45px;
      border-bottom: 3px solid #3b5383;
    }

    .menu-wrapper {
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 800px; /* Limits the width of the container */
    }

    #my_logo img {
      opacity: 1;
      box-sizing: border-box;
      width: auto;
      height: 33px;
      max-width: 50px;
      flex: 0 0 auto;
      box-shadow: 5.6px 5.6px 4px 0 rgba(0, 0, 0, 0.3);
      margin-right: 5px;
      margin-top: 5px;
    }

    .wb_menu ul.hmenu {
      list-style: none;
      display: flex;
      margin: 0;
      padding: 0;
    }

    .wb_menu ul.hmenu li {
      display: flex;
      align-items: center;
      gap: 5px; /* Space between icon and text */
    }

    .wb_menu ul.hmenu li a {
      text-decoration: none;
      color: #ffffff;
      font-family: Arial, sans-serif;
      font-size: 16px;
      transition: color 0.3s;
      padding: 15px 18px;
    }

    .wb_menu ul.hmenu li:hover {
      background: #194cbc;
      border-bottom: 3px solid #3b5383;
    }

    .act {
      background: #1E2630;
      border-left: 3px solid #3b5383;
      border-right: 3px solid #3b5383;
      border-bottom: 3px solid #1E2630;
    }
    .act a {
        color: #6392f8 !important;
    }
    .act a:hover {
        background: #1E2630;
        border-bottom: 5px solid #1E2630;
    }
    .wb_menu ul.hmenu li svg {
      width: 30px;
      height: 20px;
      fill: currentColor; /* Matches text color */
    }  
    
  