.btn-float-top {
    display: none;
    padding: 10px;
    background: #206bc4;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
    position: fixed;
    bottom: 20px;
    right: 10px;
    border-radius: 10px;
}


.btn-float-sesion {
    position: fixed;
    top: 90px;
    right: 5px;
    background-color: #585f6a;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    z-index: 1000;
}

.btn-float-sesion:hover {
    background-color: #1d60b0;
    color: white;
    text-decoration: none;
    cursor: pointer;
}

.btn-float-sesion .label {
    display: none;
    position: absolute;
    top: 50%;
    right: calc(100% + 10px);
    transform: translateY(-50%);
    background-color: #585f6a;
    color: white;
    padding: 8px;
    border-radius: 5px;
    white-space: nowrap;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease, left 0.3s ease;
    font-weight: bold;
}

.btn-float-sesion:hover .label {
    display: contents;
}

body {
    background-image: url('../images/general/background-main.png') !important;
}

/* .avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid #c6e5f8;
} */