@tailwind base;
@tailwind components;
@tailwind utilities;



.booking-success-container {
    max-width: 800px;
    margin: 30px auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.notification-dropdown::after {
    display: none;
}

.notification-icon.new-notification {
    animation: shake 0.5s ease-in-out infinite;
    color:red
}

.dropdown-item-read {
    color: gray;
}
.navbar1-profile .profile-image {
    width: 30px;
    height: 30px;
    object-fit: cover; /* Pour s'assurer que l'image conserve ses proportions */
    
}
.navbar1-profile .user-dropdown {
    text-decoration: none;
}
.navbar1-notification {
    text-decoration: none;
    margin-right: 8px; /* Espacement entre l'image et le texte */

}
/* Animation de tremblement */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    75% { transform: translateX(-5px); }
}


.dropdown-menu {
    display: none;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    font-family: 'Work Sans', sans-serif;
    background-color: white;

}


/* Styles pour afficher les dropdowns */
.dropdown-menu.show {
    display: block;
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s ease;
    width: fit-content;
}
.btn-yellow {
    background-color: #F9E925; /* Couleur jaune clair */
    border-color: #f7e7a0;
    color: #333; /* Couleur du texte, ajustez si nécessaire */
    font-family: "Inter", sans-serif ;

}

.btn-yellow:hover {
    background-color: #f2d54b !important; /* Couleur jaune plus foncé pour le survol */
    border-color: #f2d54b !important;  
    color: #333 !important; /* Couleur du texte, ajustez si nécessaire */
}
.insurance-dropdown {
    position: relative;
    display: inline-block;
    width: 100%;
    font-family: 'Work Sans', sans-serif;

}

.dropdown-selected {
    border: 1px solid #ccc;
    padding: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-size: 15px;
    font-family: 'Work Sans', sans-serif;

}


.dropdown-list {
    display: none;
    position: absolute;
    width: 100%;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #ccc;
    font-size: 14px;
    font-family: 'Work Sans', sans-serif;

}

.dropdown-item {
    padding: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-family: 'Work Sans', sans-serif;

}

.dropdown-item img.insurance-logo {
    width: 30px;
    height: auto;
    margin-right: 10px;
}
.insurance-logo-selected {
    width: 30px; /* Adjust the width as needed */
    height: auto;
    margin-right: 10px;
    font-family: 'Work Sans', sans-serif;

}
.dropdown-item:hover {
    background: #f0f0f0;
}
#doctorId, #consultationFee {
    display: none;
}
.btn-primary-custom {
    background-color: #F9E925; /* Couleur jaune */
    border-color: #f7e7a0; /* Couleur jaune */
    color: #000; /* Couleur du texte noir */
    font-family: "Inter", sans-serif ;

}
.btn-primary-custom:hover {
    background-color: #f2d54b !important; /* Couleur jaune foncée pour le survol */
    border-color: #f2d54b  !important; /* Couleur jaune foncée pour le survol */
    color: #000 ; /* Couleur du texte noir */

}



@font-face {
    font-family: 'SharpSans';
    src: url('../fonts/sharp/Sharp%20Sans%20Bold%20Italic.otf') format('opentype');
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: 'SharpSans';
    src: url('../fonts/sharp/Sharp%20Sans%20ExtraBold%20Italic.otf') format('opentype');
    font-weight: 800;
    font-style: italic;
}

@font-face {
    font-family: 'SharpSans';
    src: url('../fonts/sharp/Sharp%20Sans%20ExtraBold.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'SharpSans';
    src: url('../fonts/sharp/Sharp%20Sans%20Italic.otf') format('opentype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'SharpSans';
    src: url('../fonts/sharp/Sharp%20Sans%20Light%20Italic.otf') format('opentype');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'SharpSans';
    src: url('../fonts/sharp/Sharp%20Sans%20Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'SharpSans';
    src: url('../fonts/sharp/Sharp%20Sans%20Medium%20Italic.otf') format('opentype');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'SharpSans';
    src: url('../fonts/sharp/Sharp%20Sans%20Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'SharpSans';
    src: url('../fonts/sharp/Sharp%20Sans%20Semibold%20Italic.otf') format('opentype');
    font-weight: 600;
    font-style: italic;
}

@font-face {
    font-family: 'SharpSans';
    src: url('../fonts/sharp/Sharp%20Sans%20Semibold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'SharpSans';
    src: url('../fonts/sharp/Sharp%20Sans%20Thin%20Italic.otf') format('opentype');
    font-weight: 100;
    font-style: italic;
}

@font-face {
    font-family: 'SharpSans';
    src: url('../fonts/sharp/Sharp%20Sans%20Thin.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'SharpSans';
    src: url('../fonts/sharp/Sharp%20Sans.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
