.simple-alert {

    padding: 10px;
    margin: 10px 0;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
    background-color: #007feb;
    text-align: center;
    border-color: #00559d;


}
.pt-1 {
    padding-top: 1rem !important;
}
.pt-2 {
    padding-top: 2rem !important;
}
.pt-3 {
    padding-top: 3rem !important;
}
.pt-4 {
    padding-top: 4rem !important;
}
.pt-5 {
    padding-top: 5rem !important;
}

.mt-1 {
    margin-top: 1rem !important;
}
.mt-2 {
    margin-top: 2rem !important;
}
.mt-3 {
    margin-top: 3rem !important;
}
.mt-4 {
    margin-top: 4rem !important;
}
.mt-5 {
    margin-top: 5rem !important;
}

.padding-5 {
    padding: 5px !important;
}

.dropshadow {
	text-shadow: 1px 1px 2px #000000;
}
.nav-logo {
    width:40px;
    margin-top: 10px;
}

.default-collapsed { display: none;}

.logo-holder {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    align-items: center;
    position: absolute;
    z-index: 2;
    margin-top: 100px;
    width: 100%;
}

.logo {
    width: 30%;
    margin: 0 auto;
}


.header_main { 
    flex-direction: column; /* Not strictly necessary anymore, but you can keep this for future-proofing */
    flex-wrap: nowrap;
    text-align: center; /* Ensure text is centered */
}
.dashboard-box {
    /* background-color: #ffffff; */
    padding: 0px !important;
    margin-bottom: 10px;
    /* border-radius: var(--border-radius); */
}
.dashboard-box i {
    font-size: 20px;
    margin: 0 0 0px 0;
    line-height: 40px;
    display: inline-block;
    border-radius: var(--border-radius-50percent);
    background: var(--primary-color);
    color: #ffffff;
    height: 50px;
    width: 50px;
    border: 6px solid #f5f5f5;
    /* top: -60px; */
    position: relative;
}
.dashboard-box h6 {
    margin: 15px 0px 0 0;
    color: var(--dark-700);
    background-color: #f5f5f5;
    height: 100%;
    padding: 20px .75rem;
    border-radius: var(--border-radius);
    margin-top: -30px;
    font-size: 16px;
    padding-top: 30px;
}
.balance {
    color: #fff !important;
    text-align: center;
}
.amount { color: #fff !important; 
    text-align: center;
    font-size: 20px;
}


.mobile-responsive-table {
    width: 100% !important;
    overflow-x: auto !important;
    position: relative; 
}

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

.share-button {width: 100%; }


.facebook { background-color: #3b5998; }
.twitter { background-color: #1da1f2; }
.linkedin { background-color: #0077b5; }
.whatsapp { background-color: #25d366; }
.instagram { background-color: #E4405F; }
.tiktok { background-color: #000000; }

#back-to-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    background-color: #fff;
    border: solid 2px #C5A668;
    color: #C5A668;
    
    border-radius: 50%;  /* Makes the button circular */
    padding: 15px;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    z-index: 1000;
    transition: opacity 0.3s;
    text-align: center;
    line-height: 20px; /* Center the arrow vertically */
}

#back-to-top-btn:hover {
    background-color: #555;
}

.appointment_type {
    /* Hide the default checkbox */
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;

    -webkit-border-top-right-radius: 12px;
    -webkit-border-bottom-right-radius: 12px;
    -moz-border-radius-topright: 12px;
    -moz-border-radius-bottomright: 12px;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    outline: none;
    cursor: pointer;
    background-color: #f5f5f5;
    opacity: 1 !important;
    transition: background-color 0.3s ease, border-color 0.3s ease;

  }
  
  .appointment_type:checked {
    background-color: #c4a668;
    border-color: #c4a668;
  }
  
  input[type="checkbox"]:checked::after {
    content: '✔';
    color: white;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
  .collapsible-header input {
   
    margin-right: 10px;
    width: 36px;
    font-size: 19px;
    display: inline-block;
    height: 36px;
    
  }
  .collapsible-header {      
    line-height: 6px !important;
    position: relative;
  }

  .collapsible-header p {
    width: calc(100% - 30px);
    padding: 0 !important;
    margin: 0 !important;
    
  }
    .collapsible-header input[type="checkbox"] {
    position: absolute;
    height: 100%;
    top: 0px;
    right:-10px;
    }

    .nochevron:after {
        content: none !important; 
    }
    .free {
        color: green;
    }
    .appointment-description { padding-bottom: 15px !important; display: block;  }
    .collapsible-body { position:  relative;  padding-bottom: 70px; margin-bottom: 10px;}
    .continue-booking {
        position: absolute; bottom: 0; left: 0; right: 0;
        background-color: #c4a668;
        color: #fff;
        text-align: center;
        padding: 10px;           
        width: 100%;
        -webkit-border-bottom-right-radius: 12px;
        -webkit-border-bottom-left-radius: 12px;
        -moz-border-radius-bottomright: 12px;
        -moz-border-radius-bottomleft: 12px;
        border-bottom-right-radius: 12px;
        border-bottom-left-radius: 12px;

    }
    .pricing-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        max-width: 400px; /* Adjust based on your layout */
        margin: 0 auto; /* Center the container */
        padding: 10px;
        background-color: #f8f9fa; /* Light grey background */
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    
    .pricing-container .price,
    .pricing-container .deposit {
        width: 48%; /* Ensure both take up 50% minus some margin */
        text-align: center;
        font-size: 16px;
        font-weight: bold;
        color: #333;
    }
    
    .pricing-container .price {
        border-right: 1px solid #ddd; /* A border to separate the two */
        padding-right: 10px;
    }
    
    .pricing-container .deposit {
        padding-left: 10px;
    }
    .apptrow {
        gap: 0px;  
        display: flex;  
        justify-content: center; /* Center the buttons */
        align-items: center; 
        flex-wrap: wrap; /* Allow buttons to wrap */
    }
    
    .appt {  
        flex-grow: 1; /* Allow the button to grow */
        text-align: center; /* Center the text inside the button */
        margin: 5px;
    }
    .profile-icon {
        width: 50px;
        height: 50px;
        overflow: hidden;
        border-radius: 50%;
        margin-bottom: 16px;
    }

    .practitioner-select .title {font-size: 12px !important;  padding: 0px !important; margin: 0px !important; }

   .appointment-payment { font-size: 12px !important; line-height: 1.5; padding-top: 20px; margin-top: 10px; border-top: solid 2px #fff; }
   .text-white { color: #fff !important; }
   .brand-bg { background-color: #c4a668; }

   .ft-13 { font-size: 13px !important; line-height: 1.5 !important; }

@media (max-width: 767px) {
    .nav-logo {
        width:40px;
        margin-top: 5px;
    }
	
}

@media (min-width: 768px) {
    .container {
        max-width: 600px !important;
        margin: 0 auto; /* Optional: Center the container */
    }
}