.user-menu {
    position: relative;
    display: inline-block;
}

.circle-icon {
    width: 30px;
    height: 30px;
    background-color: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.circle-icon i {
    color: #ffffff;
    width: 16px;
    height: 16px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 0;
    right: 100%;
    background-color: #ffffff;
    color: #000000;
    list-style: none;
    padding: 0;
    margin: 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    z-index: 1000;
}

.dropdown-menu li {
    padding: 10px;
}

.dropdown-menu li a {
    color: #000000;
    text-decoration: none;
    display: block;
}

.dropdown-menu li a:hover {
    background-color: #f5f5f5;
}

.user-menu.show .dropdown-menu {
    display: block;
}

.sidebar {
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    width: 80px;
    background-color: #0a0a0a;
    color: white;
    transition: all 0.3s;
    overflow: hidden;
}

.white-container {
    background: white;
    box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 20px;
}

.sidebar a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    color: white;
    text-decoration: none;
}

.sidebar a:hover {
    background-color: #007bff;
}

.content {
    margin-left: 80px;
}

@media  (max-width: 767px) {
    .content {
        margin-left: 0px !important;
    }
}

.circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-right: 15px;
    /* Espacio entre el círculo y el texto */
}

.circle-green {
    background-color: #9dd8c4;
    color: #004d40;
}

.circle-orange {
    background-color: #f8c291;
    color: #b75d23;
}

.circle-yellow {
    background-color: #f9e79f;
    color: #7e6600;
}

.circle-blue {
    background-color: #85c1e9;
    color: #1b4f72;
}

.circle-red {
    background-color: #f1948a;
    color: #78281f;
}

.number {
    font-size: 24px;
    font-weight: bold;
    margin-top: 5px;
}