/* Reset default margin and padding for UL and LI elements */
body, ul, li {
  margin: 0;
  padding: 0;
  list-style: none;
}


table {
  width:100%;
  padding-left: 10px;
  padding-right: 10px;
}
.table-header{
  background: linear-gradient(to bottom, #d0dce1,#edf9ff, #fafafa);
    /* Replace the color codes with the colors you want for the gradient */
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}
.table-payment{
  background: linear-gradient(to bottom, #d0dce1,#ebf8ff,#ebf6ff, #fafafa, #ffffff, #ffffff);
    /* Replace the color codes with the colors you want for the gradient */
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}
.table-banner td img {
  max-width: 90%; /* Ensure images are not wider than their parent cell */
  height: auto; /* Maintain the image's aspect ratio */
  display: block; /* Remove any extra spacing around the image */
  margin: 8px auto; /* Center the image horizontally in the cell */
  box-shadow: 0px 1px 5px 2px rgba(99, 98, 98, 0.5);
  border-radius: 1.3rem;
  transition:transform .5s;
}
.table-banner td img:hover {
 
  border: 0px solid #007bff; /* Example: Adding a blue border */
  
  transform: scale(0.95);
  
}
.header-title{
  color:#004fa3;
  text-align: center;
  margin-top: -20px;
  margin-bottom:-15px;
}
.tablee-payment{
  font-size: 10px;
  color:#7cd0a3;
  font-weight: bold;
  padding-left: 10px;
  padding-right: 5px;
}

.tablee-payment tr td input[type="text"],
.tablee-payment tr td input[type="password"],
.tablee-payment tr td input[type="email"] {
  border: 2px solid #97cdb1; 
  border-radius:5px;
  padding: 8px; 
  width: 80%;
  font-size: 10px;
  margin-top:5px;
  margin-bottom:5px;
  transition: border-color .3s;
}

/* Active (focused) state for text and password input fields */
.tablee-payment tr td input[type="text"]:focus,
.tablee-payment tr td input[type="password"]:focus,
.tablee-payment tr td input[type="email"]:focus {
  border-color: #1a4f9a; /* Change border color when focused */
}
.tablee-payment tr td select {
  border: 0px solid #7ed1a2;
  border-radius: 5px;
  padding: 8px;
  width: 94%;
  font-size: 10px;
  margin-top: 5px;
  margin-bottom: 5px;
  background-color: #eff2f3;
}
.tablee-payment td img {
  width: 80%;
  max-width: 200px;
  min-width:100px;
  padding: 5px;
  border: 2px solid #f5f6f7;
  border-radius: 8px;
  margin: 8px;
  background-color: #f5f6f7;
  transition: border-color 2s, transform 2s;
  
  

}.tablee-payment td img:hover{
  transform: scale(0.9);
  border: 2px solid #4378ec;
}
.input-with-placeholder {
  width:94%;
  background-image: url('images/placeholder.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 10px center; /* Adjust the position as needed */
  padding-left: 30px; /* Ensure there's enough space for the image */
}
.frame {
  width: 90%;
  margin: 10px auto;
  text-align: center;
}
.custom-btn {
  width: 280px;
  height: 45px;
  color: #fff;
  border-radius: 5px;
  padding: 10px 25px;
  font-family: 'Lato', sans-serif;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
   box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
   7px 7px 20px 0px rgba(0,0,0,.1),
   4px 4px 5px 0px rgba(0,0,0,.1);
  outline: none;
}
.btn-1 {
  background-color: rgb(102, 209, 138);
  background-color: linear-gradient(0deg, rgba(116, 245, 161,1) 0%, rgba(64, 132, 87,1) 100%);
  border: none;
  border-radius:200px;
  transition: background-color 2.5s;
}
.btn-1:hover {
   background-color: rgb(20, 112, 52);
   background-color: linear-gradient(0deg, rgba(44, 93, 61,1) 0%, rgba(116, 245, 161,1) 100%);
}

.rating {
  display: inline-block;
  text-align:center;
  width: 100%;
}

.rating input {
  display: none;
}

.rating label {
  cursor: pointer;
}

.rating label img {
  width: 20px; /* Set the size of your star images */
  height: 20px;
  
}

.rating input:checked ~ label img {
  /* Use your filled star image path */
  content: url("filled-star.png");
}

.img-button{
  filter: brightness(100%);
}
.img-button:hover{
  
  filter: brightness(95%);
}
a {
    font-size:13px;
    font-weight: bold;
    text-decoration: none;
    color: #27519b; /* Set the link color to a desired color */
    background-color: transparent; /* Set the background to transparent */
    /* You can also add more styles as needed */


}a:hover {
  color: #ff0000; /* Change the link color on hover */
  background-color: transparent; /* Set the background to transparent on hover */
  /* You can also add more hover styles as needed */
}


/* Set a background color and style for the navigation */
.nav-header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px;
  background-color: #27519b;
  color: white;
  box-shadow: 0px 2px 5px 2px rgba(0, 0, 0, 0.5);
}

/* Style the menu toggle button */
.menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 5px 0;
}

/* Style the menu items */
.menu li {
  margin-right: 20px;
}


.menu a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}
.menu a {
  text-decoration: none;
  color: white;
  width: 100%;  
}

.menu-toggle {
  cursor: pointer;
  display: none;
  position: absolute;
  right: 20px; /* Adjust the distance from the right side */
  top: 50%;
  transform: translateY(-50%);
}
/* Style the dropdown container */
.dropdown {
  position: relative;
}

/* Style the submenu */
.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #333;
  width: 160px;
  border: 1px solid #444;
}

/* Style the submenu items */
.submenu li {
  display: block;
  margin: 0;
}

.submenu a {
  padding: 10px;
  display: block;
  font-weight: normal;
  
}

/* Change the submenu background color on hover */
.submenu li:hover {
  background-color: #555;
}

/* Show the submenu when hovering over the parent item */
.dropdown:hover .submenu {
  display: block;
}
.navbar {
  background-color: #eaeff0;
  overflow: hidden;
  position: fixed;
  bottom: 0;
  width: 100%;
}

/* Style the links inside the navigation bar */
.navbar a {
  float: left;
  display: block;
  color: #27519b;
  text-align: center;
  padding: 14px 11px;
  text-decoration: none;
  font-size: 10px;
  width:14%;


}

/* Change the color of links on hover */
.navbar a:hover {
  
  color: #ce162a;
}

/* Add a color to the active/current link */
.navbar a.active {
  background-color: #04AA6D;
  color: white;
}
/* Make the menu responsive for smaller screens */
@media screen and (max-width: 768px) {
  .menu {
      display: none;
  }

  .menu-toggle {
      display: block;
  }

  .menu.active {
      display: flex;
      flex-direction: column;
      position: absolute;
      top: 100%;
      
      right: 20px;
      background-color: rgba(39, 81, 155, 1);
      text-shadow: 2px 2px 2px #00f;
      width: 200px; /* Adjust the width of the menu */
      border: 1px solid #1a3667;
      border-radius: 0px;
      transform: translateY(0);
      transition: all 0.3s;
      padding:0px;
      box-shadow: 3px 3px 3px 1px rgba(0, 0, 0, 0.4);
  }
  .menu li {
    padding:0px;
  }
  .menu li a {
    display: block;
    width: 94%;
    text-decoration: none; /* Remove underline from links */
    padding: 10px 15px; /* Adjust padding for the clickable area */
    color: #ffffff; /* Text color */
    
}
  .menu li a:hover {
    background-color: #1a3667;
}

}
