/* The Modal (background) */
.modal {
    display: none; 
    position: fixed; 
    z-index: 1; 
    padding-top: 60px; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.4); 
  }
  
  /* Modal Content */
  .modal-content {
    background-color: #fefefe;
    margin: 2% auto; 
    padding: 10px 30px;
    border: 1px solid #888;
    width: 45%; 
  }
  
  /* The Close Button */
  .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }
  

.mfp-modal {
    text-align: center;
}

label {
    display: block;
    margin-bottom: 10px;
}


.fill_inited{
	border: 1px solid darkslategrey!important;
    border-radius: 4px!important;
    padding: 24px 20px!important;
    font-size: 15px!important;
    font-family: sans-serif!important;
}


input[type="text"],
input[type="email"],
input[type="number"],
input[type="datetime-local"],
input[type="submit"] {
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 20px;
    border: 1px solid darkslategrey;
    border-radius: 4px;
	font-size: 15px!important;
    font-family: sans-serif!important;
}



input[type="submit"] {
    background: #ceb072!important;
    border-radius: 4px!important;
    font-family: sans-serif!important;
    color: #fff;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #b99f6a!important;
}

/* Confirmation Message Styling */
#formMessage {
    margin-bottom: 20px;
    text-align: center;
}

.success {
    color: #155724;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    padding: 10px;
    border-radius: 4px;
}

.error {
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    padding: 10px;
    border-radius: 4px;
}



.ta{
	width:100%;
	font-family: sans-serif;
	border: 2px solid white;
}

.ta th{
	font-size:16px;
}

.ta tbody{
	font-size: 15px;
}






.mfp-time-picker {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.mfp-time-slot {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    background-color: #f9f9f9;
}

.mfp-time-slot.selected {
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.mfp-time-slot.disabled {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    cursor: not-allowed;
}



@media (max-width: 768px) {
  .modal-content {
    width: 85%!important; 
  }
}
