
@import 
url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,900&display=swap');
*{
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
    font-family: sans-serif;
}
body{
    color:black;
    background-color:whitesmoke;

    margin: 0; /* Remove default body margin */
    padding: 0; /* Remove default body padding */
    /* background-image: url('1567666.png');  Replace 'your-image.jpg' with the actual filename of your image */
    background-size: cover; /* Ensure the background covers the entire viewport */
    background-repeat: no-repeat; /* Do not repeat the background image */
    background-attachment: fixed; /* Fix the background image so it doesn't scroll with the page */

    

}
html, body 
{ 
 /* It means that any content that overflows the element's box horizontally will be hidden */
 overflow-x: hidden; 
 
}

.container{
    width:76%;
    margin: 0 auto;
    
    
    
    
    
}
nav{
    
    
    background-color: transparent;
    width:100vw;
    height:88px;
    position: fixed;  /*  it will stay in that position even when the user scrolls the page */
    top: 0;
    z-index: 1000;    /*  element will be stacked on top */
}

.nav_container{
    
    height:100%;
    display:flex;
    justify-content:space-between;
    align-items: center;
}

#nav_logo{
    border: 1px solid white;
    padding: .5rem;
    color: #fff;
    
 }

 nav button{
    display:none;
}
.li{
  
    width:100px;
    text-align:center;
   
}

.nav_menu{
    
    display:flex;
    align-items:center;
    gap:1rem;
}

.nav_li a{
    font-size: 0.9rem;
    cursor: pointer;
    font-weight: bold;
    color: white;
}

.nav_menu a:hover{
    opacity:.6;
    transition: all 400ms ease;
}


.Login{
    

    background-color:#89b0ae;
    border-radius: 50px;
    
    padding:3%;
    opacity:.9;
    color: white;
    
    
 
    

}

.Login2{
    

    background-color:#ff9f00;
    
    border-radius: 50px;
    
    padding:3%;
    opacity:.9;
    color: white;
    
    
 
    

}
.sticky{
    
    background:whitesmoke;
    box-shadow: 0 1rem 2rem #252627;
    color: #252627;
    
    

}
/* nav side */
#try{
    position: fixed;  /* Fix the position */
    top: 0;           /* Stick it to the top of the viewport */
    right: 0;          /* Stick it to the left of the viewport */
    height: 100vh;    /* Full height of the viewport */
    width: 200px;     /* Set the width as per your design */
    background-color: whitesmoke;
   
    color: #252627;
    padding: 20px;
    z-index: -10;
    
    
    
    
}

#try li{
    margin-top:1rem;
    text-align: center;
}
/* to do shadow on the side nav  */
#try::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%; /* Adjust the width of the shadow as needed */
    box-shadow: 0 120px 2rem black;
    z-index: -1;
}
main {
    margin-right: 200px; /* Adjust this to accommodate the width of the navigation bar */
    
}



#try li a {
    color: black; /* Apply the darker shade color to links */
}

#try li a span {
    color: black; /* Apply the same color to span elements inside links */
}
#try li.username h3 {
    color: #ff6600; /* Different color for the username link */
}

#try li.username h3 span {
    color: #ff6600; /* Different color for the username span */
}

/* Optional: Different styling for the username list item */
#try li.username {
    font-weight: bold; /* Make the username bold */
    font-size: 1.2em; /* Increase font size for emphasis */
}
#try li.username h3 span:hover {
    color:  #ff6600; /* Color when hovering over the username span */
}





/* slide show */
img{
    width:100%;
    display: block;
    object-fit:cover;
}
.slide_show{
    
    width:100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
   
}
.slider_items{
    width:inherit;
    height:inherit; 
   position:absolute;
    opacity: 1;
    
    
}


.slider_items img{
    
    height:100%;
    width: 100%;
    object-fit:cover;
    animation: zoom 31s infinite;
    
}

@keyframes zoom{
    100%{
        transform: scale(1.3);

    }
}
.text_box{
    position: absolute;
    top: 50%; /* Adjust as needed */
    left: 50%; /* Adjust as needed */
    transform: translate(-50%, -50%);
    color: #fff; /* Text color */
    font-size: 25px; /* Adjust as needed */
    font-weight: bold; /* Adjust as needed */
    text-align: center;
    z-index: 1; /* Ensure text is above the image */


    
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.75); /* Adjust the alpha (fourth) value for the desired transparency */
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
    

    
    
   

}
.text_box h1{
    font-size:300%;
    margin-top: 80px;

}
.text_box p{
    font-size:80%;
    font-weight:normal
}
.start_try_btn{
    width: 150px;
    padding: 15px 0px;
    text-align: center;
    margin: 20px 10px;
    border-radius: 25px;
    font-weight: bold;
    border:2px solid white;
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-size: 60%;
    position: relative;
    overflow: hidden;
    
   
}
.start_try_btn span{
    background-color:#89b0ae;
    height: 100%;
    width: 0;
    border-radius: 25px #89b0ae;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    transition: 0.5s;
}
.start_try_btn:hover span{
    width: 100%;

}
.start_try_btn:hover{
    border:none;
}
/* hidden section */
.hidden_from_slider{
    display: none;
}
.hidden-section {
    display: none;
  }

/* browse between sections */

.hidden_from_slider{
    display: none;
}



  /* /*  */
.Pagination{
    display: flex;
    align-items: center;
    background-color: transparent;
    padding:10px 40px;
    border-radius: 6px;
}
.Pagination ul{
    margin: 20px 30px;
}
.Pagination ul li{
    display: inline-block;
    margin: 0 10px;
    height: 45px;
    width:45px;
    border-radius: 50%;
    text-align: center;
    font-weight: 500;
    font-size: 22px;
    line-height: 45px;
    cursor: pointer;
    background-position: 0 -45px;
    transition: background-position 0.5s;
}
.Pagination ul li.active{
    color: #fff;
    background-color: #89b0ae;
    background-repeat: no-repeat;
    background-position: 0 0;
}
.btn1 ,.btn2{
    display: inline-block;
    align-items: center;
    font-size: 22px;
    font-weight: 500;
    background: transparent;
    color:#383838;
    
    outline: none;
    border: none;
    cursor: pointer;

}
.btn1 i{

  width: 24px;
  margin-right: 15px; 
}
.btn2 i{

    width: 24px;
    margin-left: 15px; 
    
  }
  
  

.choose_info{
    
  margin: 0 auto; /* Center the block-level element horizontally */
  text-align: center; /* Center the text inside the block */
  justify-content: center; /* Center items horizontally */
  align-items: center; /* Center items vertically */
  
  
  
  height: 100vh;/* Set the height of your container */


  width: 100%;
  display: grid;
          place-items: center;
          min-height: 100%;
  margin-top: 7.5rem;
  margin-bottom: 20px;
  background-color: white;
  border-radius: 3rem;
  
  
  
  
} 
.choose_info label{
    font-size: 20px; 
    text-align: center; 
    padding: 40px;
    
} 
/* first main section */
#chooseList{
    display: grid;
    grid-template-columns: repeat(2, 100px);
    gap: 50px;
    place-items: center;
    
    
    
}
#chooseList li{
    
    
    padding: 20px;
  text-align: center;
    display: grid;
    grid-template-rows: auto;
    gap: 10px;
    cursor: pointer;
    
  
    
    
    
    

    
}
#chooseList li:hover{
    background-color:whitesmoke;
}
#chooseList li.selected {
    background-color:#E4E4E2;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
    border-top-left-radius: 10px;
    
    
    
}
/* second main section */
.choiceses{
    display: grid;
    grid-template-columns: repeat(2, 100px);
    gap: 80px; 
    place-items: center;
    justify-content: center;
    
   
    
    

}
/* this is overwrite the first one */
.choose_uni_bi{
    display: grid;
    grid-template-columns: repeat(3, 100px);
    gap: 80px; 
    place-items: center;
    justify-content: center;
    
}
.choiceses li{
    
    padding-top: 0;
padding-right: 20px;
padding-bottom: 0;
padding-left: 20px;
border:solid #ccc 1px;
color:#000a;
    
    letter-spacing: 0.1em;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    line-height: 45px;
    text-decoration: none;
    width: 150px;
    white-space: nowrap; /* Prevent text from wrapping to the next line */

    
    
    
    
}
.choiceses li:hover{
    background-color: whitesmoke;
    
    
    
    
    
}

/* change the color of seleced options: {unigram, bigram} or {10-k, 10-k by section} */
.choiceses li.selected2{
    background-color:#90A3AE;
    color:whitesmoke;
}
.choiceses li.selected3{
    background-color:#90A3AE;
    color:whitesmoke;
}
/* .choiceses li:nth-child(1){
    background-color: #023e8a;
    color:white;
}
.choiceses li:nth-child(2){
    background-color: #48cae4;
    
} */

/* third main section */



.tiles {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(4rem, 1fr));
  border: none;
  
}
.form-field label{
  display: grid;
  position: relative;
  aspect-ratio: 1 / 1;
  place-items: center;
  grid-template-rows: 1fr auto;
  border: 1px solid #ccc;
  border-radius: .5rem;
  transition: 200ms ease;
  padding: 0.3rem 1.4rem;
}
.form-field .hide-cb{
  position:absolute;
  z-index: -10;
  width:1px;
  height:1px;
  overflow:hidden;
}
.fa-brands {
  font-size: 3rem;
  color: #000a;
  transition: 500ms ease;
}
.name {
  font-size: 0.8rem;
  color: #0008;
  transition: 200ms ease;
}
.form-field input[type="checkbox"]:checked + label {
  border-color: #89b0ae;
  border-width: 2px;
  color: #e5989b;
}
/* .form-field label:before {
  content:'✔';
  color: white;
  position: absolute;
  top: -2px;
  left: -2px;
  opacity: 0;
  transition: 250ms linear;
  border: 1px solid white;
  border-radius: 50%;
  line-height: 0.6;
  aspect-ratio: 1 / 1;
} */
.form-field:hover label,
.form-field label:focus,
.form-field input[type="checkbox"]:focus + label{
  border-color: hsl(204, 72%, 33%);
  outline: 2px solid #bee3db;
}

.form-field:hover label:before,
.form-field label:focus:before,
.form-field input[type="checkbox"]:focus + label:before {
  opacity: 1;
}


.form-field input[type="checkbox"]:checked + label:before {
  background-color: white;
  opacity: 1;
}

/* --- fluff ---- */


.tiles {
  background-color: white;
  width: min(60ch, 100vw);
  max-width: 100%;
  
  
  
}

.tiles-legend {
  text-align: center;
  color: #FBF7F4;
  font-size: 2rem;
  font-weight: 900;
  translate: 0px -.2rem;
  -webkit-text-stroke: 1px #4C4A46;
  background-blend-mode: multiply;
}

/* //////////////////////// */
/* form */
#myForm{       /* for new form and exsisting form */
    display: grid;
    grid-template-columns: 100px 100px; /* Explicit columns */
    grid-auto-columns: 1fr 1fr;
    gap:130px;
    justify-items: center;
    justify-content: center;
    align-items: center; /* Center items vertically */
    background-color: #252627;
    border-radius: 4px;
    padding: 40px;
    width: 50%;
    height: 100%;
   
    
    
    
}

#myForm button{
    background-color: rgb(137, 176, 174);
    padding:10px;
    cursor: pointer;
    
}
#myForm button:hover{
    opacity: 0.8;
 
}
#section5 #myForm {
    grid-template-columns: 100px;
    background-color: white;
}
#section5 #myForm button{
    padding: 20px;
    padding-left:50px;
    padding-right:50px;
    
}

  /* Hide the default file input */
  input[type="file"] {
    display: none;
}

/* Style for the custom button */

.custom-file-input {
    display: inline-block;
    padding: 12px 20px;
    cursor: pointer;
    background-color: transparent;
    color: white;
    border: none;
    border-radius: 4px;
    border: 4px dashed #ccc;
    color: #ccc;
    width: 150px;
    
    
}
#fileCount1{
    font-size:small;
    margin-top:5px;
    justify-self:center;
    background-color: cornsilk;
}





/* //////// Sign In Page//////// */
#sign-in-container{
    font-family: Arial, sans-serif;
            background-color: #f4f4f4;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction:column;
            justify-content: center;
            align-items: center;
            height: 100vh;
}
#nav_logo_signin{
    border: 1px solid black;
    padding: .5rem;
    color: black;
    width:100px;
    margin: 10px;
   
}
#form-signin{
    background-color: #fff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            width: 300px; 
            margin: 10px;
}
#sign-in-container p{
    padding-bottom: 10px;
}
#new-create-account{
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 300px; 
    text-align: center;
            
}
#new-create-account p, #new-create-account a {
    display: inline; /* or inline-block */
    margin: 0;
}
#new-create-account a:hover {
    text-decoration-line: underline;
            
            
            
}
#sign-in-container h2{
    margin: 10px;
    text-align: center;
    color: #333;  
    font-size: 24px;
    font-weight: var(--base-text-weight-light, 300);
    letter-spacing: -0.5px;
}
#form-signin label{
    display: block;
    margin-bottom: 8px;
    color: #555;
}
#form-signin input[type="text"],#form-signin input[type="password"],#form-signin input[type="email"]{
    width: 100%;
    padding: 8px;
    margin-bottom: 16px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
}
#form-signin button{
    background-color: #89b0ae;

    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}
#form-signin button:hover {
   opacity: 0.8;
}
/* /////////////////signup page//////////////////// */
/* signup page */
#sign-up-body{
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}
#sign-up-container {
    margin-top: 5%;
    width: 100%;
    max-width: 400px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: #f9f9f9;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}


#sign-up-container form p {
    margin-bottom: 15px;
}

#sign-up-container label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

#sign-up-container input[type="text"],
#sign-up-container input[type="email"],
#sign-up-container input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

#sign-up-container button {
    width: 100%;
    padding: 10px;
    background-color: #89b0ae;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

#sign-up-container button:hover {
    opacity: 0.8;
}
.errorlist{
    color:red;
}
/* //////////////////////////////// */

@media screen and (max-width:1000px){

    
    nav button{
        display: inline-block;
        font-size: 1.8rem;
        color:white;
        background:transparent;
        cursor: pointer;
    }
    .close_menu_btn{
        display: none;
        width:40px;
        margin-left:40px;
        opacity:.6;
    }
    .open_menu_btn{
        width:40px;
        margin-left:40px;
        opacity:.6;
    }
    .nav_menu{
        display:none;
    }
    .nav_container .nav_menu{
        background-color:#89b0ae;
        top:0;
        right:0;
        width:60%;
        height:100%;
        position: fixed;
        flex-direction: column;
        gap:0;
        align-items: flex-start;
        align-items: center;
        padding-top:110px;
        
       
    }
   
    .nav_menu li{
        padding: 2%;
        margin-top: 20px;
        
    }
    .nav_menu li a{
        font-size:80%;
    }
    
    .nav_menu li a:hover{
        background-color:#89b0ae;
        opacity: 0.4;
        
    }
}

/* ******************************** */
/* tryFirst page */
/* form in tryFirst page */
.TextAnalyzerTitle{
    text-align:center;
    margin-top:15px;
}
#cleanTextTitle{
    margin-bottom: 20px;
    margin-top:10px;
}
#analyze-form {
    width: 100%;
    margin: 0 auto;
    /* background-color: #fff; */
    padding: 20px;
    /* border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
}

#analyze-form label {
    font-weight: bold;
    margin: 4px;
   

}
#analyze-form h4{
    margin-bottom: 10px;
}
#id_content{
    width: 100%;
    height: 250px;
}
#analyze-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
    
}
#phrases{
    display: flex;

    flex-wrap: wrap;
    margin-bottom: 10px;
    background-color: #89b0ae;
}
#phrases div{
    width: calc(33.33% - 20px); /* Adjust width based on desired gutter space */
    margin: 10px; /* Adjust margin based on desired spacing between items */
    box-sizing: border-box;
}
/* #id_phrase1, #id_phrase2, #id_phrase3{
    
    
} */

.notification {
    color: red;
}
#errorMessages{
    margin-top: 10px;
    
    
}
#analyze-form button {
    background-color: #89b0ae;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

#analyze-form button:hover {
    opacity: 0.7;
}
/* result table */
#cleanText{
    background-color:white;
    height: 100px;
    margin-bottom: 20px;
    padding: 5px;
}

/* Table styles */
table {
    border-collapse: collapse;
    width: 100%;
    border: 1px solid #dddddd;
    font-family: Arial, sans-serif;
    margin-bottom: 20px;
}

th, td {
    padding: 8px;
    text-align: center; /* Center text horizontally */
    vertical-align: middle; /* Center text vertically */
}

th {
    background-color: #f2f2f2;
    color: #333333;
    font-weight: bold;
}

tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Hover effect */
tr:hover {
    background-color: #e2e2e2;
}

/* samples */
/* General container styles */
.samples_container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Heading styles */
h1 {
    margin-bottom: 30px; /* Adds space below the heading */
    font-size: 2em; /* Adjust font size if needed */
    font-weight: bold;
    text-align: center; /* Center the heading */
}

/* Sample section styles */
.sample-section {
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.sample-title {
    font-size: 1.2em;
    margin-bottom: 10px;
    font-weight: bold;
}

/* Download link styles */
.download-link {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 5px;
    font-size: 1em;
    color: #fff;
    background-color: #89b0ae;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.download-link:hover {
    background-color: #6b8a80;
    color: #e0e0e0;
}
.system-note {
    background-color: #f8f9fa;
    border-left: 10px solid #89b0ae;
    padding: 15px;
    margin-bottom: 20px;
    font-size: 16px;
    color: #333;
    font-family: Arial, sans-serif;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.system-note p {
    margin: 0;
    line-height: 1.5;
}


/* about us */
#aboutus_body nav{

    background-color: whitesmoke;
    box-shadow: 0 1rem 2rem #252627;

}
#aboutus_body{
    background-color: whitesmoke;
    color:black;
    margin-bottom: 0;
    
    
}
#aboutus_body #nav_logo{
    border: 1px solid black;
    
    color: black;

    
 }

.aboutus_container {
    height: auto;
    width: calc(100% - 200px); /* Full width minus 200px */
    position: relative; /* Changed to relative */
    margin: 20px auto; /* Add margin to space around the container */
    background-color: whitesmoke; /* Background color */
    display: flex; /* Enable flexbox for layout */
    align-items: center; /* Center items vertically */
    justify-content: center; /* Center items horizontally */
    margin-top: 15%;
    color:black;
}
#aboutus_body .nav_li a{
    color:black;
    
}


.image-and-text {
    display: flex;
    align-items: center; /* Center items vertically */
    justify-content: center; /* Center items horizontally */
    position: relative; /* Ensure relative positioning if needed */
    height: 50%; /* Example height to show full viewport height (adjust as needed) */
    background-size: cover; /* Ensure the image covers the element */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Prevent image repetition */
    width:100%;
    margin-right: 10%;
}


.about-image {
    width: 50%; /* Set width to 50% of the parent element */
    height: auto;/* Set height to 100% of the viewport height */
    left: 0; /* Align the curved edge to the left side */
    color:black;
}

.text-content {
    width: 50%; /* Set width to 50% of the parent element */
    padding: 20px; /* Add some padding around the text */
    color:black;
}

.text-content p {
    color: black;
    margin: 15px 0;
}
.text-content p a{
    font-size: larger;
    color: black;
}
.cntactus{
    margin-top: 5%;
    background-color: #89b0ae;
}



/* dashbored */
/* General container styles */
.dashboard-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Heading styles */
.dashboard-heading {
    margin-bottom: 30px;
    font-size: 2em;
    font-weight: bold;
    text-align: center;
    color: black;
}

/* Processed Files section styles */
.processed-files-section {
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.processed-file-title {
    font-size: 1.2em;
    margin-bottom: 10px;
    font-weight: bold;
}

/* File item container */
.file-item {
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* File name styles */
.file-name {
    font-size: 1em;
    margin-bottom: 10px;
}

/* Download link styles */
.download-link {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1em;
    color: #fff;
    background-color: #89b0ae;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.download-link:hover {
    background-color: #6b8a80;
    color: #e0e0e0;
}

/* No files message */
.no-files-message {
    font-size: 1.2em;
    color: #777;
    text-align: center;
}
/*  */
/* for the simple pages containerInAll */
.containerInAll {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
    text-align: center;
    /* Centering the container */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
}

.containerInAll a {
    display: inline-block;
    
    
    color:  #89b0ae;
   text-decoration: underline;
}

.containerInAll a:hover {
    opacity: 0.7;
}

.containerInAll h1{
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}
.containerInAll p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}



.containerInAll a:hover {
    text-decoration: underline;
}
.containerInAll button {
    background-color: #89b0ae;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.containerInAll button:hover {
    opacity: 0.7;
}
.containerInAll input{
    padding: 5px;
    background-color: whitesmoke;
}
.containerInAll ul {
    list-style-type: disc; /* Sets the list item marker to a disc */
    margin: 20px 0; /* Adds some margin above and below the list */
    padding-left: 20px; /* Adds padding to the left of the list */
    background-color: #f9f9f9; /* Light background for the list */
    border: 1px solid #ddd; /* Adds a light border around the list */
    border-radius: 5px; /* Rounds the corners of the list */
    padding: 15px; /* Adds padding inside the list */
}

/* Styling the list items */
.containerInAll li {
    margin-bottom: 10px; /* Adds space between list items */
    font-size: 1rem; /* Sets a consistent font size */
    color: #333; /* Sets the text color */
    line-height: 1.6; /* Increases the line height for better readability */
}

/* Additional styling for list item markers */
.containerInAll ul li::marker {
    color: #3498db; /* Changes the color of the list item marker */
    font-size: 1.2rem; /* Increases the size of the list item marker */
}

/* payment style */
/* General Body Styling */
.bodyPayment {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
}


.bodyPayment h1 {
    color: #333;
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.bodyPayment form {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.bodyPayment button {
    background-color: #699694;
    color: #fff;
    font-size: 16px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

.bodyPayment button:hover {
    opacity: 0.8;
}

/* *********************************** */

/* contact us */

