.card-grid {
    margin: 15px auto;
    display: flex;
    grid-gap: 1rem;
    flex-wrap: wrap;
   
    justify-content:space-evenly;

}
.card {
    width: 110px;
    background-color: white;
    border-radius: 10px;
    border: 2px solid green;
    /* box-shadow: 1px 1px 3px 0px rgba(13, 235, 10, 0.75); */
    transition: background-color 0.3s ease-in-out;
}
.dark-mode .card {
  background-color: rgba(31, 3, 3, 0.416); 
}

.card-title {
    font-size: 1rem;
    color: #0E7434;
    padding-top: 7px;
}
.mark-address-title{
  display: flex;
  justify-content: center;
  font-weight: bold;
  font-size: larger;
  /* font-style: italic; */
  /* text-decoration:  rgb(38, 0, 255)  underline 2px ; */
 
}
.state {
    color:#0E7434;
}

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 70px;
    height: 34px;
  }
  
  /* Hide default HTML checkbox */
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  /* The slider */
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .2s;
    transition: .2s;
    cursor: pointer;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .2s;
    transition: .2s;
  }
  
  input:checked + .slider {
    background-color: #0E7434;
  }
  
  input:focus + .slider {
    box-shadow: 0 0 1px #0E7434;
  }
  
  input:checked + .slider:before {
    -webkit-transform: translateX(36px);
    -ms-transform: translateX(36);
    transform: translateX(36px);
  }
  
  /* Rounded sliders */
  .slider.round {
    border-radius: 34px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  }

  .button {
    background-color: #0E7434;
    color: white;
    padding: 14px 20px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    text-decoration: none;
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 40vh; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  border-radius: 8px;
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}







.color-picker-container {
  display: inline-block; /* Ensure the color picker container stays inline */
  margin-left: 10px; /* Adjust margin as needed */
}
