.weekday-btn {
    padding: 10px 20px;
    border: none;
    background: #ddd;
    color: #333;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: background 0.3s ease;
}
.weekday-btn.active {
    background: #28a745;
    color: #fff;
}
/*
.time-slot {
    margin-top: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #f9f9f9;
}
*/
.custom_message_booking textarea{
	width:100px;
}

/* General Styles */
.abp-admin-wrap {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.abp-admin-wrap h1 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #23282d;
}

.abp-admin-wrap h2 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #23282d;
}

.abp-description {
    color: #666;
    margin-bottom: 20px;
}

/* Days Grid */
.abp-days-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.abp-day-card {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.abp-day-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #23282d;
}

/* Toggle Switch */
.abp-toggle {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.abp-toggle input {
    display: none;
}

.abp-toggle-slider {
    width: 40px;
    height: 20px;
    background: #ccc;
    border-radius: 20px;
    position: relative;
    cursor: pointer;
    margin-right: 10px;
}

.abp-toggle-slider::before {
    content: '';
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: 0.3s;
}

.abp-toggle input:checked + .abp-toggle-slider {
    background: #0073aa;
}

.abp-toggle input:checked + .abp-toggle-slider::before {
    transform: translateX(20px);
}

/* Time Inputs */
.abp-time-input {
    margin-bottom: 15px;
}

.abp-time-input label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.abp-time-input input[type="time"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 10px;
}

.abp-checkbox {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Number Input */
.abp-number-input {
    width: 100px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Textarea */
.abp-textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    resize: vertical;
    min-height: 100px;
}

/* Submit Button */
.abp-submit-button {
    background: #0073aa;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.abp-submit-button:hover {
    background: #005177;
}
/* Popup Styling */
.popup {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  justify-content: center;
  align-items: center;
  z-index: 1000; /* Ensure it's on top */
}

.popup-content {
  background: white;
  padding: 20px;
  border-radius: 10px;
  width: 100%;
  max-width: 400px; /* Fixed width */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
}
.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #333;
}

.close:hover {
  color: #000;
}

/* Form Styling */
.form-step {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-step h3 {
    margin: 0 0 20px 0;
    font-size: 20px;
    color: #333;
    font-weight: 600;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}



.form-control {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: #0073e6;
    outline: none;
}

/* General Styling for Time Slot Buttons */
.time-slot {
    display: inline-block;
    margin: 5px;
    padding: 8px 16px;
    font-size: 15px;
	font-weight: bold;
    font-family: 'Roboto';
	color: #004274;
    /*background-color: #007bff;  Default color for available slots */
    width:180px;
    border: 1px solid #d9d6d6;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Hover effect for time slot buttons */
.time-slot:hover {
    background: linear-gradient(135deg, #6a11cb, #2575fc) !important;  /* Darker blue on hover */
    transform: translateY(-2px); /* Slight lift effect on hover */
	color:white;
}

/* Styling for Available Slots */
.time-slot.available {
    background: #ffffff; /* Green for available time slots */
}

.time-slot.available:hover {
    background: linear-gradient(135deg, #6a11cb, #2575fc) !important; /* Darker green on hover for available slots */
}

/* Styling for Booked Slots (Grayed-out, Italicized, and Disabled) */
.time-slot.booked {
    background-color: #fafafa;
    cursor: not-allowed;
    opacity: 0.7;
    color: #00427470;
    font-style: italic;
    box-shadow: none;       /* Italicized text for booked slots */
}

/* No hover effect for booked slots */
.time-slot.booked:hover {
    background-color: #dc3545; /* Keep same color on hover for booked slots */
    transform: none;           /* No transform on hover */
}
.gredient_button{
	background: linear-gradient(135deg, #6a11cb, #2575fc);
	color:white;
	
}

/* Styling for Selected Slot */
.time-slot.selected {
    color:white;
	background: linear-gradient(135deg, #6a11cb, #2575fc); /* Light yellow background for selected slot */
    transform: scale(1.05); /* Slight scale up effect to highlight the selection */
}

/* Responsive Design for Small Screens */
@media (max-width: 768px) {
    .time-slot {
        font-size: 14px;
        padding: 10px 20px;
    }
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-primary {
    background: #0073e6;
    color: white;
}

.btn-primary:hover {
    background: #005bb5;
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #5a6268;
}

.btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}
.varify_otp_button{
	width:100px;
	display:flex;
	justify-content:flex-start;
}
.varify_otp_button{
	width:100px;
	display:flex;
	justify-content:flex-end;
}
/* General Modal Styling */
#multiStepPopup .modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

#multiStepPopup .modal-header {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: white;
    border-bottom: none;
    padding: 20px;
}

#multiStepPopup .modal-title {
    font-size: 1.5rem;
    font-weight: bold;
}

#multiStepPopup .close {
    color: white;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

#multiStepPopup .close:hover {
    opacity: 1;
}
.progress-bar{
background: linear-gradient(135deg, #6a11cb, #2575fc);
}
.button_continue,.next-step{
background: linear-gradient(135deg, #6a11cb, #2575fc);
color:white;
}
.button_continue,.next-step:hover{
color:white;
}

/* Progress Bar Container */
/*
.progress-bar-container {
    position: relative;
    margin: 40px 0; 
}

.progress-bar {
    height: 8px;
    background-color: #e5e7eb;
    border-radius: 4px;
    position: absolute;
    top: 20px; 
    left: 0;
    right: 0;
    z-index: 1;
}

.progress-bar-fill {
    height: 100%;
    background-color: #3b82f6;
    border-radius: 4px;
    transition: width 0.5s ease;
}

.progress-bar-icons {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.progress-step {
    text-align: center;
    position: relative;
}

.progress-step .step-icon {
    width: 40px;
    height: 40px;
    background-color: #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #6b7280;
    transition: all 0.3s ease;
    margin: 0 auto 10px; 
}

.progress-step.active .step-icon {
    background-color: #3b82f6;
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
}

.progress-step .step-label {
    font-size: 0.9rem;
    color: #6b7280;
    display: block;
    margin-top: 5px;
}


.progress-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20px; 
    left: 50%;
    width: 100%;
    height: 2px;
    background-color: #e5e7eb;
    z-index: -1;
    transform: translateY(-50%);
}

.progress-step.active::after {
    background-color: #3b82f6;
}
*/
form .input-field {
  flex-direction: row;
  column-gap: 10px;
}
.input-field input {
  height: 45px;
  width: 42px;
  border-radius: 6px;
  outline: none;
  font-size: 1.125rem;
  text-align: center;
  border: 1px solid #ddd;
}
.input-field input:focus {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}
.input-field input::-webkit-inner-spin-button,
.input-field input::-webkit-outer-spin-button {
  display: none;
}
/*
.prev-step{
	padding:0px 10px;
	background:linear-gradient(135deg, #6a11cb, #2575fc);
	border:1px solid #ffffff;
	border-radius:20%;
}
.prev-step:hover{
	padding:0px 10px;
	background:linear-gradient(135deg, #6a11cb, #2575fc);
	border:1px solid #ffffff;
	border-radius:20%;
}

svg.svg-inline--fa.fa-left-long{
	height:2em;
	padding-top:5px;
}
*/
.prev-step{
	border:none;
	background:none;
}
.prev-step path{
	fill:blue;
}
.date-button {
    display: inline-block;
    padding: 10px 15px;
    margin: 10px;
	font-family: 'Roboto';
	color: #004274;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f5f5f5;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s;
}

.date-button span {
    display: block;
}

.date-button .day-name {
    font-weight: bold;
	font-family:'Roboto';
	color:#004274;
    font-size: 18px;
    
}

.date-button .date-text {
    font-weight: bold;
	font-family:'Roboto';
	color:#004274;
    font-size: 14px;
}

.date-button.selected {
    color:white;
	background: linear-gradient(135deg, #6a11cb, #2575fc);
}
.date-button.selected .date-text {
    color: white;
}
.date-button.selected .day-name {
    color: white;
}
.navigation-left-buton{
	justify-content:flex-end;
}
.time-slots-container {
    color: #cb245b;
    font-size: 18px;
    font-family: emoji;
}
#selectedDateTime{
	font-weight:bold;
}
#thankYouMessage{
	font-size:18px;
}
#confirmedDateTime{
	font-weight:bold;
}
.thank_you_message{
	font-size:18px;
}
.success_image{
	width:150px;
}
svg.bi.bi-arrow-left-circle-fill{
	width:30px;
	height:30px;
	
}
#multiStepForm sup{
	font-size:1em;
	color:red;
}
.otp-enabled {
    width: 80px;
}
.otp-disabled {
    width: auto;
}
.thank_you{
	    display: block;
    text-align: center;
    font-size: 20px;

}
