.heading{
	padding-top:20px;
	font-weight: bold;
}
.mandat{
	padding-top:10px;
	font-weight: bold;
	color:red;
}

.upload-box {
      border: 2px dashed #6200ea;
      border-radius: 8px;
      padding: 20px;
      width: 300px;
      text-align: center;
      background-color: white;
    }

    .upload-box input[type="file"] {
      display: none;
    }

    .upload-label {
      display: inline-block;
      padding: 10px 20px;
      border: 2px solid #6200ea;
      border-radius: 4px;
      color: #6200ea;
      cursor: pointer;
      transition: background-color 0.3s;
    }

    .upload-label:hover {
      background-color: #6200ea;
      color: white;
    }

    .error-message {
      color: red;
      font-size: 14px;
      margin-top: 10px;
    }
	
	
	
	
	
	
	
	
	#date-picker {
    margin-bottom: 20px;
    padding: 10px;
    font-size: 16px;
}

.slots-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.slot-item {
    flex: 1 1 calc(33.333% - 20px);
    box-sizing: border-box;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.slot-item input[type="checkbox"] {
    margin-right: 10px;
}

.slot-item.disabled {
    background-color: #e0e0e0;
    border: 1px solid #ccc;
}

.slot-item.disabled input[type="checkbox"] {
    cursor: not-allowed;
}

.slot-item label {
    cursor: pointer;
}

@media (max-width: 768px) {
  .hero {
    margin-top: 0px;
}
  .custom-header{
    padding: 0 5px;
  }
  .logo {
    width: 55px;
    height: 55px;
  }
  .phone-number {
    font-size: 13px;
  }

    .slot-item {
        flex: 1 1 calc(50% - 20px);
    }
}
  /* scrollbar */
       ::-webkit-scrollbar {
           width: 5px;
       }

       ::-webkit-scrollbar-track {
           background: #333;
       }

       ::-webkit-scrollbar-thumb {
           background: #ddd;

       }

       ::-webkit-scrollbar-thumb:hover {
           background: #ddd;
       }

       * {
           scrollbar-width: thin;
           scrollbar-color: #333 #ccc;
       }
        footer{
          background: none !important;
        }

@media (max-width: 480px) {
    .slot-item {
        flex: 1 1 100%;
    }
}


.button {
  border: none;
  color: white;
  padding: 16px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
}

.button1 {
  background-color: #0d44bf;
    color: #fff6f6;
    border: 2px solid #04AA6D;
    font-weight: bold;
    width: 15%;
	border-radius: 5px;
}

.button1:hover {
  background-color: #04AA6D;
  color: white;
}


.hidden {
            display: none;
        }
        
        





	