/* General Reset */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
* {
     padding: 0;
     margin: 0;
     box-sizing: border-box;
     font-family: Arial, sans-serif;
   }
   .container-website {
     display: flex;
     height: 100vh;
     width: 100%;
   }
   /* Left Side Navigation */
   .left-side {
     width: 20%;
     background-color: #f4f4f4;
     padding: 20px;
     display: flex;
     flex-direction: column;
     align-items: center;
     border-right: 1px solid #ddd;
   }
   .left-side i,
   span {
     font-weight: bold;
     color: #000;
     margin-top: 30px;
     font-size: 2rem;
     margin-left: 5px;
   }
   .pages a {
     text-decoration: none;
     color: #000;
     width: 100%;
     margin-left: 50px;
   }
   .pages {
     margin-top: 50px;
     width: 100%;
   }
   .pages p {
     font-size: 16px;
     display: flex;
     align-items: center;
     cursor: pointer;
     padding: 10px;
     border-radius: 5px;
     color: #000;
     margin-top: 20px;
     padding-left: 20px;
     width: 100%; /* Ensure the paragraph takes up the full width of the parent */
     box-sizing: border-box; /* Include padding in the width calculation */
     transition: all 0.2s ease-in-out;
   }
   .pages i {
     font-size: 18px;
     position: absolute;
     margin-top: 10px;
     margin-left: 30px;
   }
   .pages p:hover {
     background-color: #e7e7e7;
   }
   .active {
     background: #e7e7e7;
     border-radius: 10px;
   }
   .btn-2 {
     margin-top: 4vh;
     border: none;
     padding: 15px 20px;
     text-align: center;
     transition: 0.5s;
     font-size: 1rem;
     background-size: 200% auto;
     color: white;
     box-shadow: 0 0 20px #eee;
     border-radius: 10px;
     background-image: linear-gradient(
       to right,
       #00d2ff 0%,
       #3a7bd5 51%,
       #00d2ff 100%
     );
   }
   .btn-2:hover {
     background-position: right center; /* change the direction of the change here */
     color: #fff;
     text-decoration: none;
     box-shadow: 0 5px 5px gray;
     cursor: pointer;
   }
   /* Right Side Dashboard */
   .right-side {
     width: 80%;
     padding: 20px;
     background-color: #fff;
   }
   .right-side h1 {
     text-align: center;
     padding: 20px;
     background: #000;
     font-size: 2rem;
     border-radius: 10px;
     background: linear-gradient(90deg, #2736df, #29c9f5);
     color: #fff;
   }
   .save{
    padding: 10px;
   }
   .save button{
    padding: 10px 10px;
    width: 200px;
    border-radius: 5px;
    border: none;
    font-size: 16px;
    background: rgb(150, 150, 248);
    transition: all 0.2s ease-in-out;
    cursor: pointer;
   }
   .save button:hover{
    background: rgb(87, 87, 249);
   }

   h3{
    text-align: center;
   }
   .form-setting{
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
   }
   .set-group input{
    width: 400px;
    height: 40px;
    padding: 10px;
    border: 2px solid gray;
    border-radius: 4px;
    margin-top: 10px;
   }

   .go-home{
    padding: 10px;
    font-size: 17px;
    width: 300px;
    text-align: center;
    margin-top: 65px;
    border: none;
    margin-left: 370px;
    background: none;
   }
   .go-home a{
    text-decoration: none;
    color: #000;
   }
   .go-home:hover{
    color: darkblue;
    text-decoration:  2px underline;
   }
   .go-home a:hover{
    color: darkblue;
   }
   .fa-arrow-up-from-bracket{
    transform: rotate(90deg);
    margin-left: 10px;
   }

  
@media screen and (max-width:820px) {
  h3{
    font-size: 25px;
   }
   .go-home {
    position: absolute;
    left: -30vh;
   }
   
}

/* Responsive Design for Mobile (max-width: 428px) */
@media (max-width: 428px) {
  .save{
    position: absolute;
  }
  .save button{
    width: 150px;
    margin-top: 145vh;
    margin-left: -2.5vh;
    padding: 10px ;
    margin-right: 10px;
  }
}
