.sender-pp-container {
    width: 4vw;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2%;
    height: 100%;
}

.sender-pp {
    aspect-ratio: 1/1;
    width: 100%;
    border-radius: 50%; /* Makes the frame circular */
    overflow: hidden; /* Hides the parts of the image outside the circular frame */
    display: flex;
    justify-content: center; /* Center the image horizontally */
    align-items: center; /* Center the image vertically */
    background-color: #f0f0f0; /* Background color of the circular frame */
}

.sender-pp img {
    max-width: 100%;
    object-fit: cover;
}

.notification-tile {
    text-align: left !important;
    display: none;
    position: fixed;
    margin-left: 63vw;
    padding: 1vw;
    margin-top: 6vh;
    background-color: #161616;
    width: 35vw;
    align-items: center;
    justify-content: stretch;
    height: 79vh;
    z-index: 2000;
    flex-direction: column;
    overflow-x: scroll;
    border-radius: 2%;
    filter: drop-shadow(1px 1px 8px #00000070);
}


.notif-tile-selector {
    display: flex;
    width: 100%;
    height: 45%;
    padding: 1%;
    justify-content: space-between;
    align-items: flex-end;
}

.notification-tile::-webkit-scrollbar {
    display: none;
}

.notification-content:hover {
    color: white;
    background-color: var(--gold-dark-solid);
}

.unread {
    color: rgb(0, 0, 0);
    background-color: var(--primary-dark-color) !important;
}

.unread:hover {
    color: white;
    background-color: var(--golden-solid) !important;
}

.notif-top-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 2%;
    padding-top: 0%;
}

.notif-tile-title {
    display: flex;
    font-size: 1.8rem;
    width: 60%;
    padding: 1%;
    font-weight: 700;
    background-color: rgba(255, 0, 0, 0);
}

.notification-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 80%;
    background-color: rgba(0, 0, 255, 0);
    text-align: left;
}

