.box::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #f5f5f5;
    border-radius: 5px;
}

.box::-webkit-scrollbar {
    width: 10px;
    background-color: #f5f5f5;
    border-radius: 5px;
}

.box::-webkit-scrollbar-thumb {
    background-color: rgb(151, 151, 151);
    border: 2px solid rgb(199, 199, 199);
    border-radius: 5px;
}

.notBtn {
    transition: 0.5s;
    cursor: pointer;
}

.fas {
    font-size: 25pt;
    padding-bottom: 10px;
    color: black;
    margin-right: 40px;
    margin-left: 40px;
}

.box {
    width: 100%;
    height: 400px;
    overflow-y: auto;
}

.fas:hover {
    color: #d63031;
}

.notBtn:hover > .box {
    height: 60vh;
}

.content {
    padding: 20px;
    color: black;
    vertical-align: middle;
    text-align: left;
}

// .gry{
//   background-color: #F4F4F4;
// }

.top {
    color: black;
    padding: 10px;
}

.display {
    position: relative;
}

.cont {
    position: relative;
    top: 0;
    width: 100%;
    height: 100%;
    // background-color: #F4F4F4;
}

.cont:empty {
    display: none;
}

.stick {
    text-align: center;
    display: block;
    font-size: 50pt;
    padding-top: 70px;
    padding-left: 80px;
}

.stick:hover {
    color: black;
}

.cent {
    text-align: center;
    display: block;
}

.sec {
    padding: 10px 10px 5px 10px;
    transition: 0.5s;
}

.profile {
    -webkit-clip-path: circle(50% at 50% 50%);
    clip-path: circle(50% at 50% 50%);
    width: 50px;
    float: left;
}

.txt {
    vertical-align: top;
    font-size: 14px;
    padding: 5px 5px 0px 60px;
    font-weight: 700;
}

.sub {
    vertical-align: top;
    padding: 5px 10px 0px 60px;
    font-size: 12;
    color: grey;
}

.new {
    border-style: none none solid none;
    border-color: red;
}

.sec:hover {
    background-color: #bfbfbf;
}

.check_icon {
    display: flex;
    align-items: flex-end;
    right: 0;
}
.container {
    position: relative;
}

.checkIcon {
    opacity: 0; /* Initially hidden */
    transition: opacity 0.3s ease;
}

.sec:hover .checkIcon {
    opacity: 1; /* Show on hover */
}
