body {
    background-color: #f0f0f0;
    margin: 0; /* Asegúrate de que no haya margen en el body */
    padding: 0; /* Asegúrate de que no haya padding en el body */
}

.container {
    max-width: 600px;
    margin-top: 50px;
    margin-bottom: 70px; /* Ajusta este valor para que sea al menos igual a la altura del footer */
}


.logo {
    max-width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.stylist-card {
    transition: transform 0.3s, background-color 0.3s, box-shadow 0.3s !important;
    margin: 10px;
    border-radius: 15px !important;
    border: 2px solid transparent !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1) !important;
    width: 120px;
    height: auto;
}

.stylist-card .card-img-top {
    height: 100px !important;
    object-fit: cover !important;
    border-top-left-radius: 15px !important;
    border-top-right-radius: 15px !important;
}

.stylist-card .card-body {
    border-bottom-left-radius: 15px !important;
    border-bottom-right-radius: 15px !important;
    text-align: center;
}

.stylist-card .card-body h5 {
    font-size: 0.9rem !important; /* Ajuste del tamaño del texto */
    white-space: nowrap; /* Evita que el texto se divida en varias líneas */
    overflow: hidden; /* Oculta el desbordamiento de texto */
    text-overflow: ellipsis; /* Muestra puntos suspensivos si el texto es muy largo */
    margin-bottom: 0.5rem !important;
}

.stylist-card.selected {
    transform: scale(1.1) !important;
    background-color: #e0e0e0 !important;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2) !important;
    border: 2px solid #4CAF50 !important;
}

.services {
    margin-top: 20px;
}

header {
    margin-bottom: 30px;
}

h1 {
    font-size: 2.5rem;
    color: #333 !important;
}

#loading {
    font-size: 1.5rem;
    color: #777 !important;
}

#error {
    font-size: 1.2rem;
    color: #d9534f !important;
}

#error-details {
    font-size: 1rem;
}

#selected-stylist-name {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #333 !important;
}

.service-card {
    border-radius: 25px !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15) !important;
    padding: 15px !important;
    margin: 10px !important;
    text-align: center !important;
    background-color: #ffffff !important;
}

.service-card .card-body {
    text-align: center !important;
}

.service-card h5 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem !important;
}

.service-card p {
    color: #4CAF50 !important;
    font-size: 1rem;
}

.footer {
    background: #000;
    color: #fff;
    padding: 10px;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 60px; /* Ajusta la altura del footer según tus necesidades */
}
/* Toast Notification */
.toast {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 14px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s;
}

.toast.show {
    opacity: 1;
    visibility: visible;
}



