.c-main-position {
    position: fixed;
    height: 100vh; 
    z-index: 999;
    top: 0;
    padding: 50px;
}

.c-main-menu {
    padding: 11px;
    height: 100%;
    width: 60px;
    background-color: white;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    transition: 0.5s;
    overflow: hidden;
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
    justify-content: space-between;
}

.c-menu-item {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 4px;
    white-space: nowrap;
    transition: background-color 0.2s;
    border-radius: 10px;
    margin-top: 15px;
    margin-bottom: 15px;
    color: #25525d;
    background-color: white;
    border: none;
    cursor: pointer;
}

.c-menu-item:focus {
    outline: none;
}

.c-menu-item:hover {
    color: rgb(26, 64, 73);
    background-color: #676f6625;
}

.c-main-menu:hover {
    width: 200px;
}

.c-logo-container {
    width: 100%;
    max-height: 140px;
    min-height: 140px;
    display: flex;
    align-items: center;
}

.c-menu-logo {
    margin-bottom: 10px;
    width: 100%;
    padding: 7.5px;
    transition: 0.5s;
}


.c-menu-text {
    color: black;
    margin-left: 12.7px;
    opacity: 0;
    transition: 0.6s;
}

.c-main-menu:hover .c-menu-text {
    opacity: 1;
}