.verified-icon {
    color: blue;
    margin-left: 5px;
    margin-top: 2px;
}

.logout-button {
    color: #92419f;
    margin-left: auto;
    margin-top: 5px;

}

.profile-info {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    padding-right: 10px;
    padding-left: 10px;
}

.user-name {
    font-weight: bold;
    font-size: 17px;
    align-self: flex-start; /* Align the user name to the start (left) */
}

.user-location {
    color: #666; /* Optionally change the color of the location */
    margin-top: 5px;
    font-size:16px;
}

.user-details {
    display: flex;
    flex-direction: column;
}

.profile-picture-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-left: 5px;
    margin-right: auto;
}

.profile-picture {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.profile-picture-label {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin: 0;
}

.plancheck {
    display: flex;
    align-items: center;
}

.expand-schedule-button {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;              /* Cambiado a flex para separar izquierda y derecha */
    justify-content: space-between; /* Izquierda y derecha extremos */
    align-items: center;
    padding: 2px 0;
    width: 160px; /* Ajusta según diseño */
}

.schedule-label {
    display: flex;
    align-items: center;
    gap: 0px;
}

.schedule-status{
    margin-right: 15px;
}

.schedule-status.schedule-open {
    color: rgb(22, 167, 22);
    font-weight: bold;

}

.schedule-status.schedule-closed {
    color: red;
    font-weight: bold;
}


.arrow-icon {
    font-size: 20px;
    vertical-align: middle;
    margin: 0;
    padding-right: 0px;
}

#schedule-dropdown-content {
    display: none;
    margin-top: 8px;
    overflow-y: auto;
    font-size: 0.9em;
    grid-column: 1 / -1;
    background: #fdfdfd;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 8px 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

#schedule-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

#schedule-list li {
    padding: 3px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between; /* Día a la izquierda, hora a la derecha */
}

#schedule-list li:last-child {
    border-bottom: none;
}

.schedule-closed {
color: red;
}

.profile-menu a {
    text-decoration: none;
}
