.fade-enter-active, .fade-leave-active {
    transition: opacity 0.5s;
}

.fade-enter, .fade-leave-to {
    opacity: 0;
}

.searchResult {
    background-color: #fff !important;
    width: 100%;
    padding: 8px;
    position: absolute;
    left: 0px;
    top: 100%;
    z-index: 99;
    border-radius: 5px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

.hiddenSiteSearch {
    width: 100%;
    height: 50px;
    padding: 8px;
    background: #f5f5f5;
    display: none;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0px;
    border-radius: 5px;
}

.highlight {
    /*background-color: red !important;*/
    /*border: 1px solid #e4f6e6;*/
}

.highlight a {
    background-color: hsl(120, 73%, 75%) !important;
}

.js-count-events.bg-danger + .bootstrap-calendar-day {
    background-color: lightgreen !important;
    border-radius: 50%;
}


.searchResult li {
    height: 30px;
    list-style: none;
    color: #505050FF;
    padding-top: 4px;
    margin-top: 5px;
    margin-bottom: 0px;
    cursor: pointer;

}

.searchResult li:hover {
    background-color: #f5f5f5;
}

.uploaded_pet_img {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
    background: #f1f1f1;
    outline: 1px dashed #a7a7a7;
    outline-offset: 5px;
    border-radius: 10px;
    margin: 15px 0px 0px 5px;
}

.uploaded_pet_img img {
    margin-bottom: 15px;
}

.pet_thumb_anchor .pet_colmn:before {
    display: none !important;
}

.loading-skeleton {
    display: flex;
    flex-wrap: wrap;
}

.skeleton-card {
    width: 350px;
    height: 250px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.8s infinite;
    margin: 10px;
    border-radius: 10px;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

ul.tab_view-data li .slide {
    padding: 10px;
}

ul.tab_view-data li .slide {
    padding: 10px 15px;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 400;
    color: var(--secondary-text-color);
    cursor: pointer;
}

ul.tab_view-data li .icon {
    margin-right: 4px;
}

ul.tab_view-data li.active-menu {
    background: var(--navigate-color);
    cursor: default;
    border-radius: 6px;
    color: #fff;
}

.slots {
    background-color: lightgrey;
    padding: 5px;
    margin: 4px;
    color: black;
}

.selectedTimeSlotActive {
    background-color: white;
    color: var(--navigate-color);
    padding: 6px;
    margin: 3px;
    border: 1px solid grey;
}

.js-collapse {
    display: none;
}

ul.tab_view-data li.active-menu .slide {
    color: #fff;
}

.bootstrap-calendar-container {
    /* the wrapper element */
}

.bootstrap-calendar-day.active {
    background-color: #35dc5f !important;
    border-radius: 50%;
}

/* .bg-danger {
    background-color: #35dc5f !important;
    width: 100% !important;
    border-radius: 49% !important;
    left: 0px !important;
    height: 90% !important;
    opacity: 21% !important;
} */

.bootstrap-calendar-week {
    /* the first col with the numbers of week */
}

.bootstrap-calendar-weekday-row {
    /* the first row with the names of weekdays */
}

.month-name {
    color: black;
}

@media screen and (min-width: 768px) {
    /* Adjust 768px to your desktop breakpoint */
    .my-help-iframe {
        margin: 100px;
    }

    .h-250-desktop {
        height: 250px;
    }
}

.notificationPopup {
    transition: all 0.3s ease-in-out;
}

@keyframes blink {
    50% {
        opacity: 0.5;
    }
}

.blink {
    animation: blink 1s linear infinite;
}


.card_thumb_small {
    width: 50px;
}

.card_no_small{
    font-size: 0.8rem;
    margin-top: 1px
}

.allBooked a {
    background-color: hsl(0, 73%, 75%) !important;
}

.ui-state-active {
    background-color: lightyellow !important;
}

.allBooked a {
    background-color: hsl(0, 73%, 75%) !important;
}

.ui-state-active {
    background-color: lightyellow !important;
}

.loading-calendar {
    padding: 50px; /* Adjust padding as needed */
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading-text {
    color: #f1b201;
    font-weight: bold;
    animation: blinkingText 3.5s infinite;
}

@keyframes blinkingText {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

.AvailabilityCalendar {
    display: flex;
    flex-wrap: nowrap; /* Prevent wrapping */
    align-items: flex-start; /* Align items at the start of the container */
}

.rvt_avail-calendar,
.availability-details {
    flex-basis: 50%; /* Assign an initial size for each child */
    flex-grow: 1; /* Allow each child to grow as needed */
}

/* Optional: Add some padding or margins for spacing */
.rvt_avail-calendar {
    padding-right: 10px; /* Adjust as needed */
}

.availability-details {
    padding-left: 10px; /* Adjust as needed */
}
@media (max-width: 768px) { /* Adjust breakpoint as needed */
    .AvailabilityCalendar {
        flex-wrap: wrap; /* Allow wrapping on smaller screens */
    }

    .rvt_avail-calendar,
    .availability-details {
        flex-basis: 100%; /* Each child takes full width */
    }
}



.alert_side-panel {
    padding: 15px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
    background-color: #fff;
    /* margin-top: 20px;  */
}

.alert_avail {
    background-color: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
}

.alert_notavail {
    background-color: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb;
}

.alert {
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
}

.btn-close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
}

.btn-close:hover {
    color: #000;
    text-decoration: none;
    opacity: .75;
}


.alert_default {
    background-color: whitesmoke; /* Default background color */
}

.alert_avail {
    background-color: lightgreen; /* Bootstrap's success color for available */
}

.alert_notavail {
    background-color: #dc3545; /* Bootstrap's danger color for not available */
}

.pet-image {
    width: 60px; /* or any size you prefer */
    height: 60px; /* ensure this is the same as width for a perfect circle */
    border-radius: 50%; /* this makes the image rounded */
    object-fit: cover; /* this ensures the image covers the area without distortion */

}

.disabled-button {
    background-color: #cccccc; /* Grey background */
    color: #666666; /* Darker grey text */
    cursor: not-allowed; /* Show a 'not-allowed' cursor on hover */
    border: 1px solid #aaaaaa; /* Optional: grey border */
  }

  .grey{
    color: #a7a7a7;
  }

  .body-modal-open {
    overflow: hidden !important; /* Prevent scrolling on the body when modal is open */
}

.button-container {
    display: flex;
    justify-content: space-between;
    width: 100%; /* Ensure the container spans the full width */
    background-color: #f9f2ff; /* Background color for visibility */
    padding: 20px; /* Adds space inside the container, around the buttons */
    margin-bottom: 20px; /* Adds space below the container */
}

.button-placeholder {
    visibility: hidden;
    width: 100px; /* Adjust the width to match your Back button if needed */
}
.btn-save-card {
    width: 100%;
    text-align: center !important; /* Center the text within the button */
    padding: 10px 25px;
    border-radius: 5px;
    color: #fff;
    font-size: 15px;
    border: 0px;
    position: relative;
    margin: 0px 4px;
    background: #894eac;
}


.loading-spinner {
    border: 4px solid rgba(0,0,0,.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border-left-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.add-note-textarea {
    height: auto !important;
  }

.remove_field_button{
  width: 23px;
  height: 23px;
  display: block;
  text-align: center;
  line-height: 23px;
  background: var(--navigate-color);
  border-radius: 50%;
  color: #fff;
}

.bg-primary{
    background-color: #642697! important;
    color: white !important
}

.error-message{
    color: red;
    display: block; /* Ensure label appears on a new line */
    font-size: 0.8rem; /* Adjust size as needed */
}


.loader {
    border: 4px solid #f3f3f3;
    border-radius: 50%;
    border-top: 4px solid #642697;
    width: 20px;
    height: 20px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
  }

  .loader-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px; /* Adjust height as needed to provide space for the loader */
  }



  /* Safari */
  @-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
  }

  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }


  .availability_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start; /* Align items to the start to fit 2 items per row */
    gap: 10px; /* Adjust the gap between items as needed */
}

.availability_container .alert {
    flex: 0 1 calc(50% - 10px); /* Adjust '10px' to account for the gap */
    max-width: calc(50% - 10px); /* Ensure the alert doesn't grow beyond this width */
    /* Additional styling here */
}


.timestamp-alert{
        display: flex;
        align-items: center;
        justify-content: space-between; /* This spreads out the child elements to opposite ends */
}

.btn-remove-timeslot {
    border: none;
    background: transparent;
    cursor: pointer;
    color: inherit; /* Adjust as needed */
    font-size: 1rem; /* Adjust as needed */
    display: flex;
    align-items: center;
    margin-left: auto;
}

/* Optional: Style adjustments for the icons */
.btn-remove-timeslot .fas {
    margin-right: 8px; /* Space between icon and text */
}

.timestamp-text {
    font-size: 0.75rem; /* Adjust the size as needed */
}

.btn-remove-timeslot .fas {
    font-size: 0.75rem; /* Adjust the size as needed */
    margin-right: 4px; /* Adjust spacing between icon and text if necessary */
}

.date_text{
    font-size: 15px;
}
.pick_date{
    padding: 0.5rem 0.5rem;
}

.primary-color{
    background-color: #894eac !important;
    color: white;
}

.secondary-color{
    background-color: #f1b201 !important;
    color: white;
}


.multiselect .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.multiselect .title .text {
    flex-grow: 1;
}

.close-icon.float-right {
    cursor: pointer;
    margin-left: auto; /* Ensures it stays to the right */
}


.pet-dropdown {
    padding: 3px 0px 7px 8px;
    margin: 7px;
    border-radius: 12px !important;
    /* background: #f2e5fd; */
}

.bg-dropdown{
        background: #f2e5fd;

}



/* Base class for modal dialog with dynamic size */
.dynamic-modal-dialog {
    display: flex;
    flex-direction: column;
    min-height: 65vh; /* Minimum height, adjust as needed */
}

/* Ensures modal content can expand or shrink based on its content */
.dynamic-modal-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Specific adjustments for modal body to ensure proper overflow handling */
.dynamic-modal-body {
    flex: 1;
    overflow-y: auto;
}

.card-selected {
    background-color: #f2e5fd !important; /* Choose your preferred shade of blue */
}

.no_border{
    border: 0px !important;
}

.selected-date a {
    background-color: #FFFAA0 !important;
}


.details-button {
    display: none;
}

/* Show the button on screens with a max-width of 1024px */
@media (max-width: 1024px) {

.details-button {
    width: auto; /* Dynamic width for the button text */
    padding: 8px 12px; /* Padding for a compact button look */
    background-color: #642697; /* Button color */
    color: white;
    border-radius: 4px;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    position: absolute;
    right: 10px; /* Same position as original icon button */
    top: 15px; /* Same vertical alignment */
    cursor: pointer;
}

.details-button:hover {
    background-color: #4b1d73; /* Darker shade on hover */
}
}