.is-underlined {
    text-decoration: underline !important;
}

.c-is-warning {
    background-color: #f6ae42 !important;
}
.is-red-background {
    background-color: red !important; /* Use !important to override any existing background color */
}
.is-height-full {
    height: 100% !important;
}

.font-color-8BDBFA {
    color: #8bdbfa !important;
}
.font-color-white {
    color: #fff !important;
}

.gap-1 {
    gap: 0.5rem;
}
.category {
    border-radius: 5px;
    box-shadow: 0 10px 0 rgba(107, 107, 107, 0.2), /* Bottom shadow */ 0 -1px 0px rgba(0, 0, 0, 0.1), /* Top shadow */ -1px 0 0px rgba(0, 0, 0, 0.1),
        /* Left shadow */ 1px 0 0px rgba(0, 0, 0, 0.1); /* Right shadow */
}
.category:hover {
    box-shadow: 0 10px 0 rgba(0, 194, 233, 1), /* Bottom shadow */ 0 -1px 0px rgba(0, 194, 233, 1), /* Top shadow */ -1px 0 0px rgba(0, 194, 233, 1),
        /* Left shadow */ 1px 0 0px rgba(0, 194, 233, 1); /* Right shadow */
    .button.is-link {
        background-color: #439042;
        color: white;
    }
    .price-tag {
        background-color: #4cc1e2;
        color: white;
    }
}
.is-flex-title {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.is-flex-title .subtitle {
    margin-bottom: 0;
}
.subtitle.is-6 {
    position: relative;
    padding-left: 20px; /* Adjust the padding to fit the circle */
}

.subtitle.is-6::before {
    content: "";
    width: 30px; /* Circle size */
    height: 30px; /* Circle size */
    background-color: #e9ebea; /* Circle color */
    border-radius: 50%;
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
}

.price-tag {
    padding-right: 20px;
    padding-left: 20px;
    padding-top: 3px;
    padding-bottom: 3px;
    border-radius: 3px;
    font-size: 1.5rem; /* Adjust size as needed */
    font-weight: bold;
    color: #4cc1e2;
}

.details-table {
    margin-top: 1rem; /* space above the table */
    margin-bottom: 1rem; /* space below the table */
    border-top: 1px solid #dbdbdb; /* top border */
    border-bottom: 1px solid #dbdbdb; /* bottom border */
}

.details-table td {
    border-right: 1px solid #dbdbdb; /* right border for cells */
}

.details-table td:last-child {
    border-right: none; /* no border for last cell */
}

/* Adjust the padding as necessary */
.details-table td:not(:first-child):before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    border-left: 1px solid #dbdbdb;
}

.details-table tr {
    border-bottom: 1px solid #dbdbdb;
}

.details-table td:first-child,
.details-table td:last-child {
    position: static;
}

/* If using a button, you might need to add custom styles */
.button.is-link {
    margin-top: 1rem; /* space above the button */
    background-color: #eef8f9;
    color: black;
}

.availability-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem; /* Adjust top margin as needed */
}

.button.is-link {
    white-space: nowrap;
}

.no-border {
    border-style: none;
}

.margin-right-60 {
    margin-right: 60px;
}
.link {
    text-decoration: underline;
    color: black !important;
}
.font-size-2 {
    font-size: 2.5rem !important;
}

/* profile page */
/* Custom CSS to match the design */
.profile-header {
    background-color: white;
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Change to space-between */
}
.profile-header .name-and-tags {
    text-align: left;
}
.profile-image {
    width: 100px;
    height: 100px;
    margin-right: 20px; /* Add some space between the image and the text */
}
.tags {
    margin-top: 10px;
}
.tag {
    margin-right: 5px;
}
.icon-text {
    align-items: center; /* Align the icons with the text */
}
.icon-text i {
    margin-right: 5px; /* Add some space between the icon and the text */
}
.appointment-section {
    background-color: #449043; /* Green background */
    border-radius: 10px; /* Rounded corners */
    color: white;
    padding: 20px;
    max-width: 400px; /* Adjust width as needed */
    margin: 20px auto;
}
.appointment-section .title {
    margin-bottom: 30px;
}
.appointment-section .button {
    background-color: white;
    color: #23d160;
    border: 2px solid white; /* White border */
    width: 100%;
    margin-top: 20px;
}
.appointment-section .icon {
    margin-right: 5px;
}
/* Custom arrow style */
.appointment-section .arrow {
    display: flex;
    /* justify-content: center; */
    margin: 10px 0;
    margin-left: 2px;
}
.appointment-section .arrow:after {
    content: "↓";
    font-size: 30px;
    color: #336a32;
    font-weight: 1000;
}
/* Custom dropdown style */
.dropdown {
    width: 100%;
    margin-top: 10px;
    height: 30px;
}
.dropdown .button {
    width: 100%;
    text-align: left;
}
.dropdown .menu {
    width: 100%;
}
.section-title {
    color: #363636;
}
.info-box {
    border: solid 1px #dbdbdb;
    padding: 10px;
    margin-bottom: 20px;
}
.info-box .title {
    color: #4a4a4a;
}
.info-box .content {
    color: #4a4a4a;
}
/* Ensure that both columns are of equal height */
.columns {
    display: flex;
}
.column {
    display: flex;
    flex-direction: column;
}
/* Adjustments for the side by side columns */
.profile-column {
    flex-grow: 2; /* Profile column takes more space */
}
.rdv-column {
    flex-grow: 1; /* RDV column takes less space */
}
.line {
    font-size: 2.2rem !important;
    line-height: 0.4;
}
.margin-bottom-0 {
    margin-bottom: 0px !important;
}
.margin-left-24 {
    margin-left: 24px !important;
}
.number-icon {
    background-color: white; /* Green background */
    color: #336a32; /* White text */
    border-radius: 50%; /* Round shape */
    width: 30px; /* Size of the icon */
    height: 30px; /* Size of the icon */
    display: flex; /* Align the content */
    align-items: center; /* Align the content vertically */
    justify-content: center; /* Align the content horizontally */
    font-size: 18px; /* Size of the number */
    font-weight: bold; /* Make the number bold */
    margin-right: 12px;
}
.step {
    display: flex;
    align-items: center;
}
.white-color {
    color: white;
}
.has-background-green {
    background-color: #449043 !important;
    box-shadow: 0 5px 0 rgb(255, 255, 255); /* Bottom shadow */
}
.font-blue {
    color: #4ec0e4;
}
.backgournd-blue {
    background-color: #0a2463 !important;
}
.up_tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 8px;
    margin: 0;
}
.up_tag.is-primary {
    background-color: #0a2463;
    color: white;
    z-index: 10;
}
.up_tag.is-info {
    background-color: #4ec0e4;
    color: white;
    z-index: 10;
}
.column-1 {
    width: 25%;
    border: 1px solid #dae4e4; /* Adds a border to each cell */
    text-align: left; /* Aligns the text to the left */
    padding: 8px; /* Adds padding inside each cell */
    height: 100px;
}
.column-2 {
    width: 75%;
    border: 1px solid #dae4e4; /* Adds a border to each cell */
    text-align: left; /* Aligns the text to the left */
    padding: 8px; /* Adds padding inside each cell */
    height: 100px;
}

.icon-text-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border: 1px solid #0d317c;
    border-radius: 4px;
    margin-right: 10px;
    background-color: #4ec0e4; /* This is a typical Bulma button color */
    color: #0d317c;
    font-size: 1rem;
    transition: background-color 0.3s;
    box-shadow: -1px 8px 1px rgba(13, 49, 124, 1); /* Drop shadow with more extension downwards */
}

.icon-text-button:hover {
    background-color: #2759af; /* Darken the button on hover */
}

.icon-text-button i {
    margin-right: 10px; /* Space between the icon and the text */
}

.website-link {
    color: #1e3050;
    margin-bottom: 20px;
    display: block;
}

.website-link:hover {
    text-decoration: underline;
}

/* therapists page */
.main {
    background-color: #edf9f9;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 50px;
}
.filters {
    /* display: flex;
  justify-content: space-around; */
    padding: 20px;
    background-color: #00c1ea;
    width: 80%;
    border-radius: 5px;
}
.form-field {
    /* display: flex;
  flex-direction: column; */
    /* width: 32%; */
}
.no-padding {
    padding: 0px;
}
.btn {
    opacity: 0;
    visibility: hidden;
    text-decoration: none;
    background-color: #f3fdff !important;
    color: #39bce4 !important;
    padding: 10px 15px;
    text-align: center;
    border-radius: 5px;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
}

.card:hover .btn {
    opacity: 1;
    visibility: visible;
}

.profile-pic {
    background-color: #005a9c;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    margin: 10px auto;
    display: block;
    position: relative;
    top: 35px;
    z-index: 100;
}
.main-title {
    text-align: center;
    color: #111e64 !important;
    font-size: 50px !important;
    margin-top: 20px;
}
.margin-top-40 {
    margin-top: 40px;
}
.therapists {
    width: 80%;
}
@media (max-width: 768px) {
    .columns.is-multiline {
        flex-direction: column;
        align-items: center;
    }
}

/* rendez vous */

.is-hidden {
    display: none;
}
.is-one-third {
    flex: none;
    width: 33.3333%;
}
.is-flex {
    display: flex;
}
.is-align-items-center {
    align-items: center;
}
.box {
    margin-bottom: 0;
} /* Remove margin-bottom from .box to prevent unnecessary spacing */
.button-fullwidth {
    width: 100%; /* Make buttons take full width */
}
.is-halfwidth {
    flex-basis: 50%; /* Each button takes up 50% of the width */
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
}
/* Custom button colors based on the screenshot */
.button.is-primary {
    background-color: #fff; /* Adjust to match the screenshot */
    color: rgb(0, 0, 0);
    border-radius: 0;
    box-shadow: none; /* Remove box-shadow if not needed */
}
.button.is-light {
    background-color: #f1f9f8; /* Adjust to match the screenshot */
    color: #4a4a4a; /* Adjust to match the screenshot */
    border-radius: 0;
    box-shadow: none; /* Remove box-shadow if not needed */
}
/* Message box styling */
.message.is-success .message-body {
    background-color: #f0fff4; /* Adjust to match the screenshot */
    color: #363636; /* Adjust to match the screenshot */
    border-color: #48c774; /* Adjust to match the screenshot */
}
.icon.check-icon {
    color: #48c774; /* Adjust to match the screenshot */
}
.section {
    background-color: #eef8f7;
}
.box-shadow {
    box-shadow: 0 10px 0 rgba(223, 233, 233, 1), /* Bottom shadow */ 0 0px 0px rgba(0, 0, 0, 0.1), /* Top shadow */ 0px 0 0px rgba(0, 0, 0, 0.1),
        /* Left shadow */ 0px 0 0px rgba(0, 0, 0, 0.1); /* Right shadow */
}
.tab-content {
    display: none;
}
.tab-content.active {
    display: flex;
}
.has-background-white {
    background-color: white;
}
/* Additional styles to match your screenshot */
.button.is-primary {
    background-color: #fff; /* Adjust to match the screenshot */
    color: black !important;
}
.button.is-light {
    background-color: #f5f5f5; /* Adjust to match the screenshot */
    color: #4a4a4a; /* Adjust to match the screenshot */
}
.is-fullwidth {
    width: 100%;
}
/* accordion */
.accordion {
    background-color: white;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    transition: 0.4s;
    display: flex;
    justify-content: space-between;
}

.accordion:hover {
    background-color: #f5f5f5;
}

.panel {
    padding: 0 18px;
    background-color: white;
    display: none;
    overflow: hidden;
    margin-bottom: 0px !important;
}
.active {
    display: block;
}
.time-slot {
    margin: 10px 0;
}

.time-slot button {
    margin-right: 10px;
}
.time-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* Adjust the gap between buttons as necessary */
    padding: 5px; /* Provides padding around the button area */
    justify-content: center; /* Centers buttons in the container */
}

.time-slot-button-1,
.time-slot-button-2,
.time-slot-button-3,
.time-slot-button-4 {
    border-radius: 4px; /* Adjust to match the border-radius in your screenshot */
    border: 1px solid #dbdbdb; /* Light grey border */
    background-color: #f5f5f5; /* Light grey background */
    color: #4a4a4a; /* Grey text */
}

.time-slot-button-1.is-selected,
.time-slot-button-2.is-selected,
.time-slot-button-3.is-selected,
.time-slot-button-4.is-selected {
    background-color: #3273dc; /* Adjust to the color in your screenshot */
    color: white; /* White text for selected button */
    border-color: #3273dc; /* Border color to match the background */
}
.arrow.active {
    transform: rotate(180deg);
}
/* text area in rendez vous */
.comments-field {
    position: relative;
    border: 1px solid #dbdbdb; /* Grey border around the textarea */
    border-radius: 4px; /* Rounded corners for the border */
    margin: 20px 0; /* Space above and below the field */
    background: #fff; /* Ensure the background is white for the label to appear cut-out */
}

.comments-label {
    position: absolute;
    top: -10px; /* Half of the label's height to ensure it cuts into the border */
    left: 10px; /* Spacing from the left side of the border */
    background: #fff; /* Same as the field's background */
    /* padding: 0 5px; Padding on the left and right */
    color: #4a4a4a; /* Text color for the label */
    font-size: 0.75rem; /* Smaller font size for the label */
    font-weight: normal; /* Normal font weight for the label */
}

.textarea {
    width: calc(100% - 1.5em); /* Full width minus padding */
    margin: 8px 10px; /* Spacing inside the border */
    border: none; /* Remove the default border */
    box-shadow: none; /* Remove the default shadow */
    resize: none; /* Optional: Prevent resizing the textarea */
    min-width: 0 !important;
}

/* Focus styles for the textarea */
.textarea:focus {
    outline: none; /* Removes the default outline */
}
.comments {
    background: white;
    padding: 20px;
    border: solid 1px #dfe9e9;
}
/* **************** */
/* rendez vous btns */
/* **************** */
.buttons-container {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
}

.button-cancel {
    background-color: transparent;
    color: #000;
}

.button-next {
    background-color: #00d1b2; /* Teal color */
    color: #fff;

    &:disabled {
        color: #b5b5b5;

        &:hover {
            background-color: #f2f2f2 !important;
        }
    }
}

.button-cancel:hover {
    background-color: #f2f2f2; /* Light grey for hover state */
}

.button-next:hover {
    background-color: #00b29b; /* Slightly darker teal for hover state */
}

.icon-left {
    margin-right: 5px;
}

.icon-right {
    margin-left: 5px;
}
/* payment section */
.option-card {
    display: inline-block;
    border: 1px solid #dbdbdb;
    border-radius: 8px;
    padding: 1rem;
    margin: 0.5rem;
    /* width: 250px;  */
    box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1);
    text-align: center;
    cursor: pointer;
}

.option-card input[type="radio"] {
    margin-bottom: 0.5rem;
}

.option-card label {
    font-weight: bold;
    display: block;
}

.option-card p {
    color: #707070;
    margin-top: 0.25rem;
}
.payment-mode {
    display: flex !important;
    justify-content: center;
    background-color: white;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
}
/* rendez vous verification page */
/* stripe section */
.stripe-component-placeholder {
    /* background-color: #f0f8ff; */
    text-align: center;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-style: italic;
    color: #555;
    height: 100px;
}

.disclaimer-text {
    background-color: #4dbee7;
    padding: 20px;
    margin-bottom: 20px;
    /* border-radius: 5px; */
    /* border: 1px solid #ccc; */
    color: #fff;
    font-size: 0.875rem;
}

.disclaimer-checkbox {
    margin-top: 10px;
}
/* summary section */
.summary-section {
    /* background-color: #f2f2f2; */
    margin-bottom: 15px;
    padding: 10px;
    /* border-left: 4px solid #3273dc;  */
    font-size: 0.9rem;

    &:last-child {
        margin-bottom: 0;
    }
}

.summary-header {
    color: #898989; /* Adjust color as needed */
    margin-bottom: 5px;
}

.summary-content {
    font-weight: bold;
}
