.notification-page-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 100%;
}

.notification-page-header {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding: 16px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    box-sizing: border-box;
    gap: 16px;
    background: rgba(229, 229, 229, 0.7);
    border-bottom: 0.666667px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
}

.notification-search {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: calc(100% - 58px);
}

.notification-search input {
    width: 100%;
    font-family: "PeydaWebVF", serif;
    background: rgba(255, 255, 255, 0.4);
    border: 0.666667px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 9999px;
    height: 43.83px;
    padding: 0 15px 0 20px;
    font-weight: 600;
    box-sizing: border-box;
}
.notification-search input:focus {
    outline: none;
}

.notification-search img {
    position: absolute;
    left: 15px;
    pointer-events: none;
    user-select: none;
    z-index: 2;
}

.notification-page-body-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    overflow-y: auto;
    height: 100dvh;
    overflow-x: hidden;

}

.notification-page-body {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: max-content;
    overflow-x: hidden;
}

.notification-item {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    padding: 16px;
    gap: 16px;
    box-sizing: border-box;
    border-bottom: 0.666667px solid rgba(255, 255, 255, 0.5);
}
.notification-item:first-child {
    margin-top: 92px;
}
.notification-item:last-child {
    margin-bottom: 92px;
    border-bottom: none;
}

.notif-main-icon-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.notif-main-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    background: rgba(135, 16, 40, 0.1);
    /*box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05), 0px 0px 0px 4px rgba(135, 16, 40, 0.2), 0px 0px 0px #FFFFFF;*/
    border-radius: 50px;
}
.notif-main-icon img {
    pointer-events: none;
    user-select: none;
}

.notif-content-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.notif-content-profile-image {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}
.notif-content-profile-image-placeholder {
    width: 36px;
    height: 36px;
    border: 2px solid #FFFFFF;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    border-radius: 9999px;
}
.notification-profile-image {
    width: 100%;
    height: 100%;
    pointer-events: none;
    user-select: none;
    border-radius: 9999px;
}

.notif-content-report {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.notif-report {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 6px;
}
#notif-user {
    margin: 0;
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 21px;
    color: #111827;
}
#notif-rep {
    margin: 0;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 21px;
    color: #1F2937;
}

.notif-content-date {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.notif-content-date p {
    margin: 0;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #9CA3AF;
}

.notif-content {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}
.notif-content p {
    margin: 0;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    color: #6B7280;
    text-align: start;
}