@font-face {
    font-family: 'Poppins';
    src: url('../assets/Poppins/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../assets/Poppins/Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../assets/Poppins/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif !important;
    background-color: #ffffff;
    color: #002557;
}

header {
    font-family: 'Poppins', sans-serif;
}

.header-logo {
    align-items: center;
    display: flex;
    text-decoration: none;
}

.header-logo img {
    height: 70px;
    width: auto;
    display: block;
    margin: 1rem;
}

.header-logo span {
    text-decoration-line: none;
    font-size: 1.3rem;
    color: #002557;
}

.header-container {
    font-family: 'Poppins', sans-serif;
    justify-content: center;
    background-color: #ffffff;
    align-items: center;
    padding-right: 5rem;
    padding-left: 5rem;
    height: 100px;
    display: flex;
}

.header-container-left {
    align-items: center;
    display: flex;
}

.header-container-right {
    align-items: center;
    display: flex;
}

.header-container-right span {
    color: #002557;
    padding-right: 0.5rem;
}

.header-container-right h3 {
    color: #002557;
    padding-right: 0.5rem;
}

.header-user {
    display: flex;
    flex-direction: column;
    padding-right: 1.5rem;
}

.header-user-img {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    border-radius: 100%;
    width: 3.5rem;
    height: 3.5rem;
    border: 2px solid #002557;
    overflow: hidden;
    padding: 0;
}

.header-user-img img.header-user-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 100%;
}

.header-user-img i {
    font-size: 40px;
    color: #002557;
}

.header-user-menu {
    display: none;
    border-radius: 10px;
    position: absolute;
    background-color: #ffffff;
    top: 6rem;
    right: 2vw;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    z-index: 9999;
}

.header-user-menu ul {
    list-style: none;
    align-items: center;
    margin-bottom: 0px;
    padding: 1rem;
    min-width: 130px;
}

.header-user-menu li {
    padding: 0.5rem;
    font-weight: bold;
    min-width: 130px;
}

.header-user-menu ul li a {
    text-decoration: none;
    color: #002557;
    padding: 0.5rem;
    min-width: 200px;
}

.header-user-menu li:hover {
    background-color: #0026572d;
    border-radius: 10px;
}

.client-logout:hover a {
    color: #be2828;
}

/*NAVBAR*/
.navbar-container {
    display: flex;
    background-color: #002557;
    width: 100%;
    justify-content: center;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

.navbar-container ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    gap: 80px;
}

.navbar-container ul li {
    position: relative;
}

.navbar-container ul li a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    background-color: #002557;
    color: #ffffff;
    transition: 0.1s;
}

.navbar-container a {
    font-size: 20px;
}

.navbar-container ul li a:hover {
    background-color: #ffffff20;
}

/* Estilo del dropdown */
.navbar-container ul li .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 10px;
    width: 300px;
    background-color: #002557;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    box-shadow: inset 0 8px 8px -8px rgba(0, 0, 0, 0.5);
}

.navbar-container ul li .dropdown-menu li a {
    padding: 10px;
    border-radius: 10px;
}

/* Mostrar al pasar el ratón */
.navbar-container ul li:hover .dropdown-menu {
    display: block;
}

.navbar-container i {
    color: #ffffff;
    font-size: 10px;
    opacity: 50%;
}

/*NAVBAR*/

/*----Estilo de los botones naranjas*/
.btn-orange {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FF9100;
    border-radius: 10px;
    height: 40px;
    padding: 5px 15px;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: 0.2s;
    border-style: none;
}

.btn-orange:hover {
    background-color: #e67e22;
}

.btn-orange i {
    font-size: 20px;
    padding-left: 0.5rem;
}

/*----Estilo de los botones purpuras*/
.btn-purple {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #7E0689;
    border-radius: 10px;
    height: 40px;
    padding: 5px 15px;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: 0.2s;
    border-style: none;
}

.btn-purple:hover {
    background-color: #670470;
    color: white;
}

.btn-purple i {
    font-size: 20px;
    padding-left: 0.5rem;
}

/*----Estilo de los botones amarillos*/
.btn-yellow {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FFD600;
    border-radius: 10px;
    height: 40px;
    padding: 5px 15px;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: 0.2s;
    border-style: none;
}

.btn-yellow:hover {
    background-color: #e6bf00;
}

.btn-yellow i {
    font-size: 20px;
    padding-left: 0.5rem;
}

/*Estilo de los botones verdes*/
.btn-green {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #91CD00;
    border-radius: 10px;
    height: 40px;
    padding: 5px 15px;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: 0.2s;
    border-style: none;
}

.btn-green:hover {
    background-color: #6fbf00;
}

.btn-green a {
    display: flex;
    align-items: center;
}

.btn-green i {
    font-size: 20px;
    padding-left: 0.5rem;
}


/*----Estilo de los botones azules*/
.btn-blue {
    font-family: 'Poppins', sans-serif;
    display: flex;
    background-color: #004AAD;
    justify-content: center;
    align-items: center;
    border-style: none;
    border-radius: 10px;
    height: 40px;
    padding: 5px 15px;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    text-decoration: none;
    color: white;
    font-size: 15px;
    transition: 0.2s;
    border-style: none;
}

.btn-blue:hover {
    background-color: #003f92;
}

.btn-blue a {
    display: flex;
    align-items: center;
}

.btn-blue i {
    font-size: 20px;
    padding-left: 0.5rem;
}


/*----Estilo de los botones azules oscuro*/
.btn-dark-blue {
    display: flex;
    background-color: #003780;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    height: 40px;
    padding: 5px 15px;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: 0.2s;
    border-style: none;
}

.btn-dark-blue:hover {
    background-color: #002557;
    color: white;
}

.btn-dark-blue i {
    font-size: 20px;
    padding-left: 0.5rem;
}


/*----Estilo de los botones negros*/
.btn-black {
    display: flex;
    background-color: #000000;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    height: 40px;
    padding: 5px 15px;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    text-decoration: none;
    color: white;
    transition: 0.2s;
    border-style: none;
}

.btn-black:hover {
    background-color: #3d3d3d;
    color: white;
}

.btn-black i {
    font-size: 20px;
    padding-left: 0.5rem;
}

/*----Estilo de los botones rojos*/
.btn-red {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f01717;
    border-radius: 10px;
    height: 40px;
    padding: 5px 15px;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: 0.2s;
    border-style: none;
}

.btn-red:hover {
    background-color: #ac1010;
    color: white;
}

.btn-red i {
    font-size: 20px;
    padding-left: 0.5rem;
}


/*----Estilo de la barra de busqueda*/
/*----Cliente----*/
.header-search {
    padding-left: 2rem;
    position: relative;
    color: #002557;
}

.header-search input {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    border-style: none;
    border-radius: 10px;
    padding: 10px;
    padding-right: 3rem;
    opacity: 80%;
    width: 820px;
    height: 42px;
    outline: none;
    background-color: #0000002f;
    color: #002557;
}

.header-search i {
    opacity: 50%;
    position: absolute;
    left: 820px;
    top: 50%;
    transform: translateY(-50%);
}

/*----Empleado/Expedientes----*/
.header-search-files {
    position: relative;
    color: #002557;
}

.header-search-files input {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    border-style: none;
    border-radius: 10px;
    padding: 10px;
    padding-right: 3rem;
    opacity: 80%;
    width: 100%;
    height: 42px;
    outline: none;
    background-color: #0000002f;
    color: #002557;
}

.header-search-files i {
    opacity: 50%;
    position: absolute;
    left: 1125px;
    top: 50%;
    transform: translateY(-50%);
}


/*----Estilo de nuestra Ubicación del navbar*/
.header-vet-location {
    text-decoration: none;
    color: #002557;
    padding-left: 1rem;
    align-items: center;
    display: flex;
}

.header-vet-location i {
    font-size: 30px;
}

/*----Estilo de nuestra Ubicación del navbar*/

.header-cart {
    padding-left: 2rem;
    padding-right: 2rem;
}

.header-myPets {
    padding-right: 3rem;
}

.header-login {
    padding-left: 3rem;
}

.header-register {
    padding-left: 3rem;
}

/*----Estilo del footer*/
.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15rem;
    height: 700px;
    background-color: #002557;
}

.pre-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #003780;
    min-height: 100px;
    background-size: cover;
    background-position: center;
    color: white;
    gap: 30rem;
    font-size: 25px;
}

.footer-contact {
    display: flex;
    align-content: center;
    gap: 5rem;
    font-size: 25px;
}

.footer-contact i {
    padding-right: 0.2rem;
    font-size: 20px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    align-items: center;
}

.footer-logo span {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo img {
    height: 300px;
    width: auto;
    display: block;
    margin: 0.5rem;
}

.footer-logo span {
    text-decoration-line: none;
    font-size: 30px;
    color: white;
}

.footer-interest-links {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: white;
    font-size: 25px;
}

.footer-interest-links span {
    padding-bottom: 0.3rem;
}

.footer-interest-links a {
    text-decoration: none;
    color: white;
}

.social-media {
    display: flex;
    flex-direction: column;
    gap: 15px;
    color: white;
    padding-top: 5rem;
    font-size: 25px;
}

.social-media i {
    font-size: 30px;
    color: #1872B8;
    background-color: white;
    border-radius: 10px;
    padding: 0.2rem 0.5rem;
    margin-right: 15px;
}

.post-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;

}

/*----Estilo del footer*/

/*PANTALLA DE LOGIN*/
.display-login {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 100;
    justify-content: center;
    align-items: center;
}

.form-login {
    background-color: #002557;
    padding: 2rem;
    color: white;
    border-radius: 10px;
    width: 550px;
    height: auto;
}

.login-head {
    display: flex;
    justify-content: space-between;
}

.title-login {
    padding-top: 0.5rem;
    font-weight: bold;
    font-size: 1.3rem;
}

.form-login i {
    font-size: 32px;
    padding-right: 10px;
}

.form-login i:hover {
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.200);
    padding-left: 10px;
    padding-right: 10px;
}

.input-login {
    padding-top: 2rem;
}

.input-login input {
    font-family: 'Poppins', sans-serif;
    width: 15rem;
    font-size: 16px;
    border-style: none;
    border-radius: 10px;
    padding: 10px;
    opacity: 80%;
    padding-left: 20px;
    width: 100%;
    height: 40px;
    margin-bottom: 2rem;
}

.input-login a {
    color: white;
}

.btns-login {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
    margin-top: 2rem;
}

/*PANTALLA DE LOGIN*/

/*PANTALLA DE REGISTRO*/
.display-register {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 100;
    justify-content: center;
    align-items: center;
}

.form-register {
    background-color: #002557;
    padding: 2rem;
    color: white;
    border-radius: 10px;
    width: 550px;
    height: auto;
}

.register-head {
    display: flex;
    justify-content: space-between;
}

.title-register {
    padding-top: 0.5rem;
    font-weight: bold;
    font-size: 1.3rem;
}

.form-register i {
    font-size: 32px;
    padding-right: 10px;
}

.form-register i:hover {
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.200);
    padding-left: 10px;
    padding-right: 10px;
}

.input-register {
    padding-top: 2rem;
}

.input-register input {
    font-family: 'Poppins', sans-serif;
    width: 15rem;
    font-size: 16px;
    border-style: none;
    border-radius: 10px;
    padding: 10px;
    opacity: 80%;
    padding-left: 20px;
    width: 100%;
    height: 40px;
    margin-bottom: 2rem;
}

.input-register a {
    color: white;
}

.btns-register {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
    margin-top: 2rem;
}

/*PANTALLA DE REGISTRO*/

.input-resetPass input {
    font-family: 'Poppins', sans-serif;
    width: 15rem;
    font-size: 16px;
    border-style: none;
    border-radius: 10px;
    padding: 10px;
    opacity: 80%;
    padding-left: 20px;
    width: 100%;
    height: 40px;
    margin-bottom: 2rem;
}

/*PANTALLA DE RECUPERACIÓN DE CONTRASEÑA*/
.display-resetPass {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 100;
    justify-content: center;
    align-items: center;
}

.form-resetPass {
    background-color: #002557;
    padding: 2rem;
    color: white;
    border-radius: 10px;
    width: 550px;
    height: auto;
}

.resetPass-head {
    display: flex;
    justify-content: space-between;
}

.title-resetPass {
    padding-top: 0.5rem;
    font-weight: bold;
    font-size: 1.3rem;
}

.form-resetPass i {
    font-size: 32px;
    padding-right: 10px;
}

.form-resetPass i:hover {
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.200);
    padding-left: 10px;
    padding-right: 10px;
}

.input-resetPass {
    padding-top: 2rem;
}

.input-resetPass input {
    font-family: 'Poppins', sans-serif;
    width: 15rem;
    font-size: 16px;
    border-style: none;
    border-radius: 10px;
    padding: 10px;
    opacity: 80%;
    padding-left: 20px;
    width: 100%;
    height: 40px;
    margin-bottom: 2rem;
}

.input-resetPass a {
    color: white;
}

.btns-resetPass {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
    margin-top: 2rem;
}

/*PANTALLA DE RECUPERACIÓN DE CONTRASEÑA*/


/*PANTALLA DEL PERFIL DE USUARIO*/
.contentProfile {
    display: flex;
    justify-content: center;
}

/*
    display: flex;
    flex-direction: column;
    padding: 2rem;
    border-color: rgb(170, 170, 170);
    border-style: solid;
    border-width: thin;
    border-radius: 10px;
    box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.2);
    margin-bottom: 2rem;
    max-width: 1290px;
    min-width: 700px;
    */

.infoProfile {
    display: flex;
    justify-content: center;
    border-color: rgb(170, 170, 170);
    border-style: solid;
    border-width: thin;
    border-radius: 10px;
    padding: 2rem;
    color: #002557;
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.2);
    max-width: 1290px;
    min-width: 1290px;
}

.profileImg {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    width: 100%;
}

.profileImg img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    margin: 2rem;
    object-fit: cover;
}

.profileItem {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
    border-radius: 10px;
    border-color: rgb(170, 170, 170);
    border-style: solid;
    border-width: thin;

}

.profileImg i {
    font-size: 160px;
}

.profileInfo {
    width: 100%;
}

.profileInfo a {
    width: 130px;
}

.infoProfileName span {
    font-weight: bold;
}

.infoProfileName {
    margin-bottom: 2rem;
}

.profileInfoBox {
    display: flex;
    flex-direction: column;
    font-size: 22px;
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
}

.methodPay-item {
    display: flex;
    flex-direction: column;
    font-size: 22px;
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
    border-color: rgb(170, 170, 170);
    border-style: solid;
    border-width: thin;
    border-radius: 10px;
    padding: 1rem;
}

.btnEditUser {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btnEditUser h2 {
    margin-bottom: 0rem !important;
    font-weight: bold;
}

.btnEditUser .btn-blue {
    display: inline;
}


.editProfile {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    border-color: rgb(170, 170, 170);
    border-style: solid;
    border-width: thin;
    border-radius: 10px;
    box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.2);
    margin-bottom: 2rem;
    max-width: 1290px;
    min-width: 700px;
}

.editProfile .profileImg {
    display: flex;
    justify-self: center;
}

.editProfile-footer {
    display: flex !important;
    justify-content: space-between;
    padding-left: 2rem;
    padding-right: 2rem;
}

/*
.editProfile {
    width: 100%;
    padding: 2rem;
    border-color: rgb(170, 170, 170);
    border-style: solid;
    border-width: thin;
    border-radius: 10px;
    box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.2);
    margin-bottom: 2rem;
}
    */

/*PANTALLA DEL PERFIL DE USUARIO*/

.breadcrumbs-container-client {
    color: #002557;
    padding-bottom: 1rem;
    padding-left: 3rem;
    padding-top: 2rem;
}

.breadcrumbs-container {
    color: #002557;
    padding-bottom: 1rem;
}

.breadcrumb a {
    color: #002557;
}

.current-page {
    font-weight: bold;
}

/*MAIN CONTENT*/
/* ----------------- SLIDER BANNER (SOBRESCRIBE reglas anteriores) ----------------- */
.slider-banner {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
    min-height: 400px;
}

.static-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #505050;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: inset 0 8px 8px -8px rgba(0, 0, 0, 0.8);
}

.static-banner img {
    width: 100%;
    display: block;
    box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.2);
}

.tittle-static-banner {
    display: flex;
    max-width: 650px;
    text-align: center;
    position: absolute;
    color: #002557;
    font-size: 50px;
    font-weight: bold;
}

.main-content {
    display: flex;
    background-color: #ffffff;
    padding-left: 10rem;
    padding-right: 10rem;
    padding-bottom: 2rem;
    justify-content: center;
    color: #002557;
}

.pages-info-content {
    width: 1290px;
}

.pages-product-content {
    display: flex;
    width: 1530px;
}

.product-detail-container {
    display: flex;
    gap: 4rem;
    max-width: 1290px;
    min-width: 1290px;
    padding-bottom: 2rem;
}

.comment-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.comment-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.comment-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}

.comment-stars i {
    margin-right: 2px;
}

.comment-actions {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}


.product-detail-image {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    min-width: 400px;
    max-width: 400px;
    min-height: 400px;
    max-height: 400px;
    border-color: rgb(170, 170, 170);
    border-style: solid;
    border-width: thin;
    border-radius: 10px;
}

.product-detail-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-detail-name {
    font-size: 30px;
    font-weight: bold;
}

.product-detail-description {
    font-size: 20px;
    min-height: 220px;
    max-height: 220px;
}

.product-detail-description-text {
    min-height: 200px;
    max-height: 200px;
    overflow-y: auto;
    scrollbar-color: #002557 #00265700;
    scrollbar-width: thin;
}

.product-detail-price {
    font-size: 20px;
}

.product-detail-addCart {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.product-detail-card-button {
    min-width: 188px;
    max-width: 188px;
}

.product-comments-container {
    max-width: 1290px;
    min-width: 1290px;
    border-color: rgb(170, 170, 170);
    border-style: solid;
    border-width: thin;
    border-radius: 10px;
    box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.2);
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
}

.tittles {
    display: flex;
    justify-content: space-between;
    align-content: center;
    margin-bottom: 2rem;
    border-color: rgb(170, 170, 170);
    border-bottom-style: solid;
    border-width: thin;
    width: 1290px;
}

.tittles a {
    text-decoration: none;
    color: rgb(255, 255, 255);
}

.subtittles {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    margin: 0px;
}

.subtittles h3 {
    margin: 0px;
}

.index-tittles {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    align-items: center;
}

.index-content {
    max-width: 1550px;
}

.btns-arrows {
    display: flex;
    justify-content: space-between;
    width: 80px;
    height: 20px;
    opacity: 80%;
    cursor: pointer;
}

.btns-arrows i {
    font-size: 30px;
    color: #002557;
}

.btns-arrows i::before {
    border-radius: 100%;
    box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.2);
}

.btns-arrows i:hover::before {
    background-color: #002557;
    color: white;
}



/*Marcas Favoritas*/
.circle-container img {
    border-color: rgb(170, 170, 170);
    border-style: solid;
    border-width: thin;
    border-radius: 100%;
    width: 150px;
    height: 150px;
}

.circle-container-list a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    margin-bottom: 2rem;
    font-size: 25px;
    color: #002557;
}

.circle-container-list-service {
    display: flex;
    max-width: 1290px;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.circle-container-list-service span {
    display: flex;
    justify-content: center;
    text-align: center;
}

.circle-container-list-service a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #000000;
    margin-bottom: 2rem;
    font-size: 25px;
    max-width: 170px;
    min-width: 170px;
}

.circle-container-list-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.circle-container-list {
    padding-top: 0.5rem;
    display: flex;
    gap: 4rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    /* Firefox */
}

.circle-container-list::-webkit-scrollbar {
    display: none;
    /* Chrome */
}

.circle-item {
    font-size: 23px;
    flex: 0 0 auto;
    /* evita que el item se reduzca y mantén ancho fijo */
    text-align: center;
}

.circle-container {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border: 2px solid #f0f0f0;
    margin: 0 auto;
    transition: transform 0.3s;
}

.circle-container img {
    object-fit: contain;
}

.circle-container:hover {
    transform: scale(1.1);
}

.brand-item span {
    display: block;
    margin-top: 10px;
    font-weight: 500;
    color: #444;
}


/*Diseño de las cards*/

/*Cards Productos*/
.cards {
    background-color: white;
    border-color: rgb(170, 170, 170);
    border-style: solid;
    border-width: thin;
    border-radius: 10px;
    width: 250px;
    height: 440px;
    box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.2);
}

.cards .card-img {
    background-color: rgb(255, 255, 255);
    margin: 1rem 3rem;
    width: 150px;
    height: 150px;
}

.cards .card-name {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* número de líneas visibles */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 50px;
    font-weight: bold;
    font-size: 18px;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    color: #002557;
}

.cards .card-description {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    /* número de líneas visibles */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 75px;
    font-size: 0.8rem;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    color: #002557;
}

.cards .card-price {
    font-weight: bold;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 1rem;
    color: #002557;
}

.card-button {
    display: flex;
    justify-content: center;
    margin-left: 12%;
    margin-right: 12%;
    padding-bottom: 1rem;
}

/* Wrapper carousel para productos (muestra 5 por vista) */
.cards-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding-top: 1rem;
}

.cards-list-main-catalog {
    display: flex;
    flex-wrap: wrap;
    padding-top: 0.5rem;
    display: flex;
    gap: 4rem;
}

.cards-list-main {
    padding-top: 0.5rem;
    display: flex;
    gap: 4rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding-bottom: 1rem;
}

/* ocultar scrollbar visual */
.cards-list-main::-webkit-scrollbar {
    display: none;
}

/* Cada card como item fijo (ya tienes width:250px; dejamos flex para que no se reduzcan) */
.cards.product-item {
    flex: 0 0 auto;
    width: 250px;
    /* mantén tu ancho definido */
}

.product-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.2s;
}

.product-item:hover {
    background-color: #f4f4f4;
}

.product-item a {
    text-decoration: none;
}


/*Cards Productos*/

/*Diseño de el contenedor de filtros*/
.filter-container {
    min-width: 200px;
    max-width: 200px;
    margin-right: 2rem;
    margin-top: 0.5rem;
}

.filter-main-content {
    display: flex;
    flex-direction: column;
    border-color: rgb(170, 170, 170);
    border-style: solid;
    border-width: thin;
    border-radius: 10px;
    padding: 1rem;
}

.filter-subtitle {
    margin-bottom: 1rem;
}

.checkbox-container {
    display: flex;
    align-items: start;
    gap: 5px;
    margin-bottom: 1rem;
}

.checkbox-container input[type="checkbox"] {
    margin-top: 4px;
    accent-color: #004AAD;
    cursor: pointer;
}

.btn-filter-sortBy {
    border-style: none;
    background-color: transparent;
    color: #002557;
}

.rotate-sortBy-icon {
    display: inline-block;
    transition: transform 0.5s ease;
}

/* Menú dropdown */
.dropdown-menu {
    display: none;
    position: absolute;
    background: white;
    min-width: 200px;
    margin-top: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 10px;
}

#dropdown-menu a {
    display: block;
    padding: 8px 12px;
    text-decoration: none;
    color: black;
    border-radius: 10px;
}

#dropdown-menu a:hover {
    background: #f1f1f1;
}


/*Admin Main Content*/
.header-container-admin {
    display: flex;
    font-family: 'Poppins', sans-serif;
    background-color: #002557;
    justify-content: space-between;
    align-items: center;
    color: white;
    padding-right: 5rem;
    padding-left: 5rem;
    margin-bottom: 1rem;
    height: 60px;
    display: flex;
    gap: 30px;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
}

.header-logo-admin {
    align-items: center;
    display: flex;
    text-decoration: none;
}

.header-logo-admin img {
    height: 50px;
    width: auto;
    display: block;
    margin: 1rem;
}

.header-logo-admin span {
    text-decoration-line: none;
    font-size: 1rem;
    color: white;
}

.header-user-admin {
    width: 3rem;
    height: 3rem;
}

.header-user-admin i {
    font-size: 30px;
}

.header-menu-icon {
    padding: 0.5rem;
}

.admin-header-user-menu {
    display: none;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    position: absolute;
    background-color: #ffffff;
    top: 60px;
    right: 2vw;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    z-index: 9999;
}

.admin-header-user-menu ul {
    list-style: none;
    align-items: center;
    margin-bottom: 0px;
    padding: 1rem;
    min-width: 130px;
}

.admin-header-user-menu li {
    padding: 0.5rem;
    font-weight: bold;
    min-width: 130px;
}

.admin-header-user-menu ul li a {
    text-decoration: none;
    color: #002557;
    padding: 0.5rem;
    min-width: 200px;
}

.admin-header-user-menu li:hover {
    background-color: #0026572d;
    border-radius: 10px;
}

.admin-notification-icon {
    text-decoration: none;
    padding-right: 2rem;
}

.admin-notification-icon i {
    color: white;
    font-size: 25px;
}

.notif-btn-ver {
    display: inline-block;
    margin-top: 5px;
    padding: 3px 8px;
    background-color: #002557;
    color: white !important;
    border-radius: 5px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

.notif-btn-ver:hover {
    background-color: #013b8f;
}


.admin-main {
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

.aside-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    min-width: 310px;
    max-width: 310px;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-left: -300px;
}

.admin-aside {
    display: flex;
    justify-content: center;
    margin-right: 1rem;
    margin-top: -1rem;
}

.admin-aside hr {
    width: 100%;
    border: 0.5px solid #002557;
    margin-top: 1rem;
    margin-bottom: 1rem;
    border-radius: 10px;
}

.aside-header {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.aside-main {
    font-size: 17px;
    min-width: 250px;
}

.aside-main ul {
    list-style: none;
    padding-left: 0px;
}

.aside-main li {
    list-style: none;
}

.aside-main ul li a {
    display: block;
    transition: 0.1s;
}

.aside-main a {
    text-decoration: none;
    color: #002557;
    padding: 0.5rem;
    border-radius: 10px;
}

.aside-main i {
    padding-right: 0.5rem;
}

.aside-main a:hover {
    background-color: #002557;
    color: white;
}

.aside-footer {
    display: flex;
    justify-content: center;
    align-items: end;
    width: 380px;
    padding-top: 1rem;
    display: flex;
    gap: 1rem;
}

.table-header-fixed th {
    background-color: #f8f9fa;
    position: sticky;
    top: 0;
    z-index: 5;
}

.table-body-scroll {
    max-height: 400px;
    overflow-y: auto;
}

.table-body-scroll table {
    margin: 0;
}

.infoProfileAdmin {
    display: flex;
    justify-content: center;
    border-color: rgb(170, 170, 170);
    border-style: solid;
    border-width: thin;
    border-radius: 10px;
    padding: 2rem;
    color: #002557;
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.2);
}


/*admin mode*/

.admin-main-content {
    padding-bottom: 2rem;
    padding-right: 2rem;
    padding-left: 1rem;
    width: 1290px;
    background-color: #ffffff;
}

.total-users i {
    font-size: 60px;
    color: #91CD00;
}

.active-suppliers i {
    font-size: 60px;
    color: #FFD600;
}

.total-products i {
    font-size: 60px;
    color: #FF9100;
}

.pending-order i {
    font-size: 60px;
    color: #7E0689;
}

.admin-main-content-mgmt {
    padding-bottom: 2rem;
    display: flex;
    flex-direction: column;
    width: 1290px;
    flex: 1;
}

.search {
    position: relative;
    color: #002557;
}

.search input {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    border-style: none;
    border-radius: 10px;
    padding: 10px;
    padding-right: 3rem;
    opacity: 80%;
    width: 400px;
    height: 42px;
    outline: none;
    background-color: #0000002f;
    color: #002557;
}

.search i {
    opacity: 50%;
    position: absolute;
    left: 370px;
    top: 50%;
    transform: translateY(-50%);
}

::-webkit-search-cancel-button {
    -webkit-appearance: none;
    height: 20px;
    width: 20px;
    background: url('../assets/images/button-cancel-search.png') no-repeat center;
    background-size: contain;
    cursor: pointer;
}


.resultados-busqueda {
    position: absolute;
    top: 46px;
    left: 2rem;
    width: 820px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    max-height: 300px;
    overflow-y: auto;
    z-index: 999;
}

.item-busqueda {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.item-busqueda img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
}

.item-busqueda:hover {
    background-color: #f4f4f4;
}


.mgmt-header-buttons {
    display: flex;
    gap: 10px;
}

.search-container {
    display: flex;
    justify-content: space-between;
}

.admin-mgmt-table {
    width: 1290px;
    border-radius: 10px;
    color: #002557;
    padding: 1rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

.admin-mgmt-table table thead tr th {
    color: #002557;
}

.admin-mgmt-table table tbody tr td {
    color: #002557;
}

.admin-table-text-limit {
    max-width: 400px;
    /* Ajusta según lo que necesites */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* Número de líneas visibles */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

.page-item a {
    color: #002557;
}

.page-item a {
    color: #003780;
}

.admin-form-container {
    display: flex;
    justify-content: center;
    padding-left: 1rem;
}

.form-container {
    width: 800px;
    padding-bottom: 2rem;
}

.form-container-medicalHistory {
    display: flex;
    flex-direction: column;
    width: 1100px;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.2);
    margin-bottom: 2rem;
}

.container-medicalHistory {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
}

.container-medicalHistory .form-item {
    width: 100%;
}

.form-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.form-item label {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    color: #002557;
    margin-bottom: 0.5rem;
}

.form-item input {
    font-family: 'Poppins', sans-serif;
    width: 100%;
    font-size: 16px;
    border-style: none;
    border-radius: 10px;
    padding: 10px;
    opacity: 80%;
    height: 42px;
    outline: none;
    background-color: #0000002f;
    color: #002557;
}

.form-item textarea {
    font-family: 'Poppins', sans-serif, !important;
    width: 100%;
    height: 150px;
    font-size: 16px;
    border-style: none;
    border-radius: 10px;
    padding: 10px;
    opacity: 80%;
    outline: none;
    background-color: #0000002f;
    color: #002557;
}

.form-item input::file-selector-button {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    border-style: none;
    border-radius: 10px;
    color: #002557;
}

.form-item select {
    font-family: 'Poppins', sans-serif;
    width: 100%;
    font-size: 16px;
    border-style: none;
    border-radius: 10px;
    padding: 10px;
    opacity: 80%;
    height: 42px;
    outline: none;
    background-color: #0000002f;
    color: #002557;
    border-radius: 10px;
}

.product-mgmt-img {
    min-width: 70px;
    min-height: 70px;
    max-width: 70px;
    max-height: 70px;
    object-fit: cover;
    border-radius: 10px;
}

.banner-mgmt-img {
    min-height: 70px;
    max-height: 70px;
    object-fit: cover;
    border-radius: 10px;
}

.admin-see-sale-datail {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.detail-container {
    color: #000000;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    width: 900px;
    border-radius: 10px;
    border-color: rgb(170, 170, 170);
    border-style: solid;
    border-width: thin;
}

.detail-header {
    display: flex;
    flex-direction: column;
    border-color: rgb(170, 170, 170);
    border-bottom-style: solid;
    border-width: thin;
    margin-bottom: 1rem;
    font-size: 20px;
}

.detail-main {
    border-color: rgb(170, 170, 170);
    border-bottom-style: solid;
    border-width: thin;
    padding-bottom: 1rem;
}

.sum-total-fact {
    display: flex;
    flex-direction: column;
    align-items: end;
}

.sum-total-fact span {
    margin-top: 1rem;
}

.sum-total {
    font-size: 25px;
}

.detail-btns {
    display: flex;
    justify-content: end;
    width: 900px;
    margin-top: 2rem;
    gap: 1rem;
}

.calendar {
    max-width: 100%;
    width: 1290px;
    height: 700px;
    margin: 0 auto;
    color: #002557;
}

.sm-calendar {
    max-width: 100%;
    height: 500px;
    margin: 0 auto;
    color: #002557;
}

/*vet mode*/

.vet-main-content {
    padding-bottom: 2rem;
    padding-right: 2rem;
    padding-left: 1rem;
    width: 1290px;
    background-color: #ffffff;
}

.vet-content-home {
    display: flex;
    gap: 2rem;
    flex-direction: column;
    justify-content: center;
    width: 1290px;
}

.vet-calendar-container {
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.2);
    width: 1290px;
    min-height: 620px;
    max-height: 620px;
}

.dashboard-kpis {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.2);
    width: 1290px;
}

.dashboard-kpis-list {
    display: flex;
    justify-content: space-between;
    padding: 2rem;
}


.vet-home-citas-list {
    display: flex;
    flex-direction: column;
    min-height: 500px;
    max-height: 500px;
    overflow-y: auto;
    scrollbar-color: #002557 #00265700;
    scrollbar-width: thin;
    border-radius: 10px;
    padding: 2rem;
}

.vet-mgmt-table {
    width: 1290px;
    border-radius: 10px;
    color: #002557;
    padding: 1rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

.client-vet-info-content {
    padding-bottom: 2rem;
    padding-top: 1rem;
    padding-right: 2rem;
    padding-left: 1rem;
    width: 1290px;
    background-color: #ffffff;
}

.client-vet-pet-info-content {
    display: flex;
    gap: 2rem;
    justify-content: center;
    width: 1290px;
}

.vet-client-pet-container {
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    width: 700px;
}

.vet-client-container {
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.vet-client-info {
    display: flex;
    justify-content: space-between;
}

.vet-client-info span {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.vet-client-pet-info {
    display: flex;
    justify-content: space-between;
    padding: 2rem;
    gap: 2rem;
}

.vet-client-pet-info span {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.vet-client-info-container {
    max-width: 550px;
    min-width: 550px;
}

.vet-pet-list-table {
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

/*Testimonios*/

.testimonios {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #004AAD;
    padding-top: 4rem;
    padding-bottom: 4rem;
    margin-bottom: 80px;
    color: white;
}

.card-content-testimonios {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    color: #002557;
    width: 400px;
    border-color: rgb(170, 170, 170);
    border-style: solid;
    border-width: thin;
}

.header-testimonios {
    margin-bottom: 2rem;
}

.main-testimonios {
    display: flex;
    gap: 40px;
}

.card-content-testimonios i {
    font-size: 40px;
    color: #004AAD;
}

.header-card-content-testimonios {
    font-weight: bold;
    font-size: 30px;
}

/*Admin Main Content*/

/*Mis Mascotas*/
.my-pets-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    width: 1290px;
    margin-bottom: 2rem;
}

.my-pet-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #ffffff;
    border-color: rgb(170, 170, 170);
    border-style: solid;
    border-width: thin;
    border-radius: 10px;
    width: 295px;
    padding: 1rem;
    box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.2);
}

.my-pet-card-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.my-pet-card span {
    display: flex;
}

.pet-info {
    max-width: 177px;
    min-width: 177px;
}

.pet-info h3 {
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

.pet-info span {
    display: flex;
    flex-direction: column;
}

.pet-img img {
    object-fit: cover;
    min-width: 65px;
    min-height: 65px;
    max-width: 65px;
    max-height: 65px;
    border-radius: 100%;
}

.my-pet-card-button {
    margin-left: 12%;
    margin-right: 12%;
}

/**/

.my-pets-info-container {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    background-color: #ffffff;
    border-color: rgb(170, 170, 170);
    border-style: solid;
    border-width: thin;
    border-radius: 10px;
    width: 1290px;
    box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.2);
}

.my-pets-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-color: rgb(170, 170, 170);
    border-bottom-style: solid;
    border-width: thin;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

.my-pets-info-header-right {
    position: relative;
    border-radius: 10px;
    width: 150px;
    height: 150px;
    overflow: hidden;
}

.my-pets-info-header-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.overlay i {
    font-size: 20px;
}

.my-pets-info-header-right:hover .overlay {
    opacity: 1;
}

.my-pets-info-main-content {
    display: flex;
}

.my-pets-info-medical-history {
    display: flex;
    flex-direction: column;
    padding-top: 2rem;
    padding-left: 2rem;
    padding-bottom: 2rem;
    padding-right: 0.5rem;
    background-color: #004AAD;
    box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    max-height: 550px;
    min-height: 550px;
}

.my-pets-info-medical-history-list {
    min-width: 300px;
    max-height: 550px;
    border-radius: 10px;
    overflow-y: auto;
    scrollbar-color: white #004AAD;
    scrollbar-width: thin;
}

.my-pets-info-medical-history-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    margin-right: 1rem;
}

.my-pets-info-medical-history-item div {
    display: flex;
    flex-direction: column;
}

.my-pets-info-medical-history-item a {
    color: #002557;
    text-decoration: none;
}

.my-pets-info-medical-history-item .btn-green {
    color: white;
}

.my-pets-info-medical-history-info {
    padding-left: 2rem;
    padding-right: 2rem;
}

.my-pets-info-medical-history-info-content {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    gap: 4rem;
}

.my-pets-info-medical-history-info-content-left {
    min-width: 390px;
}

.my-pets-info-medical-history-info-content-right {
    min-width: 390px;
}

.pet-data-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-radius: 10px;
    background-color: #0000002f;
    margin-bottom: 2rem;
}

/*Información de los servicios*/
.main-service-info {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    gap: 2%
}

.schedule-appointment-service-btn {
    display: flex;
    justify-content: end;
}

.service-img-info img {
    border-radius: 10px;
    max-width: 350px;
    min-width: 350px;
    min-height: 350px;
    max-height: 350px;
    box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.2);
}

.service-detail-description-text {
    min-width: 550px;
    max-width: 550px;
    min-height: 300px;
    max-height: 300px;
    font-size: 20px;
    margin-bottom: 1rem;
    overflow-y: auto;
    scrollbar-color: #002557 #00265700;
    scrollbar-width: thin;
}

.service-list-info {
    min-height: 440px;
    max-height: 440px;
    padding: 2rem;
    background-color: #004AAD;
    border-radius: 10px;
    color: white;
    box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.2);
}

.service-list-info ul {
    padding: 0px;
    margin-bottom: 0px;
}

.service-list-info li {
    list-style: none;
    margin-top: 1rem;
    max-width: 260px;
    padding-right: 0.5rem;
}

.service-list-info a {
    text-decoration: none;
    color: white;
    font-size: 20px;
    transition: 0.2s;
}

.service-list-info a:hover {
    font-weight: bold;
}

.service-list-scroll {
    min-height: 310px;
    max-height: 310px;
    overflow-y: auto;
    scrollbar-color: #ffffff #00265700;
    scrollbar-width: thin;
}

/*Estilo Contactanos*/
.aboutUs-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 5rem;
    padding-left: 5rem;
    padding-right: 5rem;
    gap: 5rem;
}

.whoWeAre-container-left {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.whoWeAre-container-left strong {
    color: #002557;
}

.whoWeAre-container-left img {
    border-radius: 10px;
    width: 400px;
    height: 400px;
}

.whoWeAre-container-right p {
    margin-bottom: 0px;
    width: 500px;
    font-size: 20px;
}

/**/
.misionVision-container-left img {
    border-radius: 10px;
    width: 500px;
    height: 300px;
    box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.2);
}

.misionVision-container-right img {
    border-radius: 10px;
    width: 500px;
    height: 300px;
    margin-bottom: 2rem;
    box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.2);
}

.misionVision-container-left p {
    margin-bottom: 0px;
    font-size: 20px;
    padding-bottom: 2rem;
}

.misionVision-container-right p {
    margin-bottom: 0px;
    font-size: 20px;
}

/**/
.contactUs-container-left {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contactUs-container-left strong {
    color: #002557;
}

.contactUs-container-left iframe {
    border-radius: 10px;
    width: 500px;
    height: 400px;
    box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.2);
}

.contactUs-container-right p {
    margin-bottom: 0px;
    width: 500px;
    font-size: 20px;
}

.aboutUs-info-container {
    padding-bottom: 2rem;
}

/*Estilo de Carrito*/
.cart-container {
    width: 100%;
    padding: 2rem;
    border-color: rgb(170, 170, 170);
    border-style: solid;
    border-width: thin;
    border-radius: 10px;
    box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.2);
    margin-bottom: 2rem;
}

.checkout-container {
    width: 100%;
    padding: 2rem;
    border-color: rgb(170, 170, 170);
    border-style: solid;
    border-width: thin;
    border-radius: 10px;
    box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.2);
    margin-bottom: 2rem;
}

.orders_list-container {
    width: 100%;
    padding: 2rem;
    border-color: rgb(170, 170, 170);
    border-style: solid;
    border-width: thin;
    border-radius: 10px;
    box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.2);
    margin-bottom: 2rem;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    padding-left: 2rem;
    padding-right: 2rem;
}

.cart-header-left {
    font-size: 25px;
    font-weight: bold;
}

.cart-header-right {
    display: flex;
    justify-content: space-between;
    font-size: 25px;
    font-weight: bold;
    margin-right: 7rem;
    width: 300px;
}

.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-color: rgb(170, 170, 170);
    border-style: solid;
    border-width: thin;
    border-radius: 10px;
    margin-top: 1rem;

}

.cart-item img {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    background-color: gray;
    margin-right: 1rem;
}

.cart-item-info {
    display: flex;
    align-items: center;
}

.cart-item-info p {
    font-size: 0.8rem;
    margin: 0px;
    width: 500px;
}

.cart-item-details {
    display: flex;
    justify-content: space-between;
    width: 420px;
    padding-right: 1rem;
}

.cart-item-details span {
    display: flex;
    align-items: center;
}

.cart-item-details input {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: bold;
    border-style: none;
    border-radius: 10px;
    padding: 10px;
    opacity: 80%;
    width: 60px;
    height: 42px;
    outline: none;
    color: #002557;
}

.btn-cart-remove {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    padding: 5px 15px;
    text-decoration: none;
    color: #002557;
    border-radius: 10px;
    transition: 0.1s;
}

.cart-item-details .btn-cart-remove:hover {
    background-color: #002557;
    color: white;
    box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.2);
}

.cart-price {
    display: flex;
    justify-content: center;
    font-size: 20px;
}

input[type="number"] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

.cart-sum-item {
    border-color: rgb(170, 170, 170);
    border-style: solid;
    border-width: thin;
    display: inline-flex;
    border-radius: 10px;
}

.cart-sum-item,
.cart-sum-item * {
    box-sizing: border-box;
}

.cart-sum-item button {
    outline: none;
    -webkit-appearance: none;
    background-color: transparent;
    border: none;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    cursor: pointer;
    margin: 0;
    position: relative;
    color: #002557;
    font-size: 25px;
    font-weight: bold;
}

.cart-sum-item button:after {
    display: inline-block;
    position: absolute;
    transform: translate(-50%, -50%) rotate(180deg);
}

.cart-sum-item button.plus:after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.cart-sum-item input[type=number] {
    font-family: sans-serif;
    max-width: 4rem;
    border: solid #ddd;
    border-width: 0 2px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    color: #002557;
}

.cart-calc-container {
    display: flex;
    margin-top: 2rem;
    align-items: end;
    flex-direction: column;
}

.cart-calc-content {
    margin-bottom: 1rem;

}

.cart-calc-price {
    background-color: #002557;
    color: white;
    height: 40px;
    padding: 5px 15px;
    border-radius: 10px;
    box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.2);
}

/*Agenda de citas por parte del cliente*/

.schedule-appointment-container {
    display: flex;
    gap: 5rem;
    width: 1290px;
    margin-bottom: 2rem;
}

.appointment-note {
    padding: 2rem;
    background-color: #dfdfdf;
    border-radius: 10px;
    height: 490px;
}

/*Pagina de ERROR*/
.error-main-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
}

.error-main-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    position: absolute;
    z-index: 9999;
    font-weight: bold;
}

.error-main-content img {
    max-width: 600px;
    min-width: 600px;
    opacity: 0.3;
}

/*NOTIFICACIONES*/
.notification-dropdown {
    position: absolute;
    right: 20px;
    top: 60px;
    background: #fff;
    border: 1px solid #ddd;
    width: 300px;
    border-radius: 10px;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    z-index: 2000;
}

.notification-header {
    padding: 10px;
    color: #002557;
    font-weight: bold;
    border-bottom: 1px solid #ddd;
    background: #f8f8f8;
}

.notification-list {
    max-height: 300px;
    overflow-y: auto;
}

.notification-item {
    padding: 10px;
    font-size: 15px;
    color: #002557;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.notification-item:hover {
    background: #f3f3f3;
}

.notification-footer {
    text-align: center;
    padding: 8px;
}

.notification-count {
    position: absolute;
    top: 7px;
    right: 190px;
    background: #e63946;
    color: white;
    border-radius: 50%;
    font-size: 12px;
    padding: 2px 6px;
    min-width: 18px;
    text-align: center;
    font-weight: bold;
    display: none;
}

.disabled-link {
    opacity: 0.6;
}

.modal[aria-hidden="true"] {
    pointer-events: none !important;
}

/*EMPLEADO*/
.employee-form-container {
    display: flex;
    justify-content: center;
    padding-left: 1rem;
}

/* ===============================
   ESTILO FULLCALENDAR - HUELLITAS DIGITAL
   =============================== */

/* Fondo general */
.fc {
    font-family: 'Poppins', sans-serif !important;
    color: #002557;
}

/* Encabezado (mes, botones) */
.fc-toolbar-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #003780;
}

.fc-button {
    background-color: #003f92 !important;
    border: none !important;
    color: #fff !important;
    font-weight: 500;
    border-radius: 10px !important;
    padding: 6px 14px !important;
    transition: 0.2s ease;
}

.fc-button:hover {
    background-color: #003780 !important;
}

.fc-button:disabled {
    background-color: #89a7c0 !important;
}

/* Barra superior */
.fc-header-toolbar {
    margin-bottom: 20px !important;
}

.fc-button-group {
    gap: 10px;
}

/* Día activo */
.fc-daygrid-day.fc-day-today {
    background-color: #8fceff70 !important;
    border: 1px solid #0091ff !important;
}

/* Hover en día */
.fc-daygrid-day:hover {
    background-color: #ebf5ff !important;
    cursor: pointer;
    border-radius: 10px;
}

.fc-view-harness {
    border-radius: 10px;
    box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.2);
}

/* Cuadro de cada fecha */
.fc-daygrid-day-number {
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    color: #003780 !important;
}

.fc-scrollgrid {
    border-radius: 10px !important;
}

.fc-col-header {
    border-radius: 10px 10px 0px 0px !important;
    /* Top-left, top-right, bottom-right, bottom-left */
}

.fc-scrollgrid-section-body>td {
    border-radius: 0px 0px 10px 10px !important;
    /* Bottom-left and bottom-right corners */
}

/* Eventos */
.fc-event {
    background-color: #1972B8 !important;
    border: none !important;
    padding: 4px 8px !important;
    border-radius: 6px !important;
    font-size: 0.9rem;
    font-weight: 500;
    color: white !important;
    transition: 0.2s ease;
}

.fc-event:hover {
    background-color: #004AAD !important;
}

/* Vista semanal/día */
.fc-timegrid-slot {
    height: 40px !important;
}

.fc-col-header-cell-cushion {
    font-size: 23px;
    text-decoration: none;
    color: #003780;
}

.fc-timegrid-axis {
    color: #002557;
    font-weight: 500;
}

/* Scroll en vista timeGrid */
.fc-scroller {
    overflow-y: auto !important;
}

/* Estilo para "no event" */
.fc-daygrid-day-events {
    margin-top: 3px !important;
}

/* Evento seleccionado */
.fc-event.fc-event-selected {
    box-shadow: 0 0 10px #1972B8;
}

/* Botón Today */
.fc-today-button {
    background-color: #91CD00 !important;
    color: #ffffff !important;
}

.cita-card {
    border-radius: 14px;
    padding: 18px 20px;
    box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.2);
    transition: transform .15s ease, box-shadow .15s ease;
}

.cita-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.cita-header {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cita-body p {
    margin: 0;
    font-size: 15px;
    line-height: 1.4;
}

.cita-fechas {
    font-size: 14px;
    font-weight: 600;
    margin-top: 6px;
    text-align: right;
}

.vet-badge {
    background: rgba(0, 0, 0, 0.25);
    padding: 5px 9px;
    border-radius: 6px;
    font-size: 12px;
    color: #fff;
}

.card-title {
    color: #002557 !important;
}

.stat-card {
    box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.4) !important;
}

.card {
    box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.4) !important;
}

.notification-icon {
    text-decoration: none;
    padding-right: 2rem;
}

.notification-icon i {
    color: #002557;
    font-size: 25px;
}

.notification-dropdown-client {
    position: absolute;
    right: 100px;
    top: 100px;
    background: #fff;
    border: 1px solid #ddd;
    width: 300px;
    border-radius: 10px;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    z-index: 2000;
}

.notification-count-client {
    position: absolute;
    top: 25px;
    right: 294px;
    background: #e63946;
    color: white;
    border-radius: 50%;
    font-size: 12px;
    padding: 2px 6px;
    min-width: 18px;
    text-align: center;
    font-weight: bold;
    display: none;
}

.medical-history-details .hist-section {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    margin-bottom: 25px;
}

.medical-history-details label {
    color: #003780;
}

.medical-history-details h4 {
    font-weight: bold;
    color: #002557;
}

.no-data {
    color: #8a8a8a;
    font-style: italic;
}

.expediente-card {
    transition: all 0.3s ease;
}

.expediente-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.object-fit-cover {
    object-fit: cover;
}

.search-section {
    width: 1290px;
}

.notification-target-selector {
    display: flex;
    gap: 1rem;
    margin: 10px 0;
    justify-content: center;
}

.selector-option {
    background: #f4f6fa;
    padding: 10px 15px;
    border-radius: 8px;
    border: 2px solid #dce3f0;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 300px;
    max-width: 300px;
}

.selector-option:hover {
    background: #e6edf7;
    border-color: #a4bddf;
}

.selector-option input[type="radio"] {
    accent-color: #002557;
    cursor: pointer;
}

.user-results-box {
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 6px;
    max-height: 200px;
    overflow-y: auto;
    background: white;
    display: none;
    padding: 5px;
}

.user-result-item {
    padding: 8px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}

.user-result-item:hover {
    background: #e9f2ff;
}

.user-result-item:last-child {
    border-bottom: none;
}

.selected-user-box {
    margin-top: 10px;
    background: #f4f6fa;
    border: 2px solid #dce3f0;
    padding: 15px;
    border-radius: 10px;
    animation: fadeIn 0.3s ease-in-out;
}

.selected-user-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.selected-user-img {
    width: 70px;
    height: 70px;
    border-radius: 100%;
    border: 2px solid #002557;
    object-fit: cover;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/*MAIN CONTENT/