
/* *{
 
    font-family: 'Akzidenz Grotesk BE Extended', 'helvetica','sans-serif';
} */

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.loader {
    border-top-color: #3490dc; /* Tailwind blue-500 */
    animation: spin 1s linear infinite;
}


/* the styles for scheduel page */


.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
  }
  
  .mainexButton {
    background-color: darkcyan;
    font-size: 2rem;
  }
  
  
  .exerciseContainer, .subExerciseContainer {
    display: inline-block;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
    background-color: #4CAF50;
    color: white;
    transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
  }
  
  .exerciseContainer {

    width: 400px;
  }
  

  
  .exerciseContainer .subExerciseContainer img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  
  .imagesforSubtraining {
    width: 15vh;
  }
  
  .imagesfortraining {

    width: 400px;
    position: relative;
  }
  
  
  
  /* Tablet styles */
  @media (max-width: 768px) {
  
    .exerciseContainer {

        width: 300px;
    }
  

  
    .imagesfortraining {

        width: 300px;
    }
  
    .imagesforSubtraining {
        width: 12vh;
    }
  }
  
  /* Phone styles */
  @media (max-width: 480px) {
  
  
    .exerciseContainer {

        width: 200px;
    }
  

    .imagesfortraining {

        width: 200px;
    }
  
    .imagesforSubtraining {
        width: 10vh;
    }
  }
  
  
  
  
  
  
  
  .texth3 {
    margin: 15px;
  
  }
  
  
  .allquestions {
  
    display: inline-block;
    justify-content: center;
    margin: auto;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background-color: lightgray;
    color: white;    
  
    
    }
    
  
  
  
  /* end of scheduel page  */



  /* styles for the webapp builder */

  #mainweb{
    background-color: #d3d3d3;
}

.note{
   outline: 2px dotted darkgray ;
    height: 75vh;
    display: flex;
}




.notetext {
    
display: table;
background-color: aqua ;
    margin: auto;


}


.responcivePage {

  width: 70%;
  margin: auto;
  unicode-bidi: isolate;
}


.size1 {
    width: 100%;

}

.size2 {
    width: 768px;

}

.size3 {
    width: 375px;

}

.clientPage {
background-color: white;
margin: auto;
}



#element-box {
    position: fixed;
    top: 10px;
    right: 10px;
    width: 200px;
    height: auto;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    border-radius: 5px;
    overflow-y: auto;
    max-height: 90%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 999; /* Adjust the z-index value as needed */
}

#element-box h2 {
    margin-top: 0;
}


.sidebar {
    width: 200px;
    padding: 20px;
    background-color: #333;
    color: white;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    height: 100vh;
    box-sizing: border-box;
    overflow-y: auto;
}

.sidebar h2 {
    margin-top: 0;
}




.clientBody {
    height: 100%;
    margin: 0;
    padding: 0;

}

.content {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #fff; /* Set background color as needed */
    color: #000; /* Set text color as needed */
    font-family: Arial, sans-serif; /* Set font as needed */
}

