@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap');



body {
    font-family: 'Roboto', sans-serif;
    color: #ffffff;
    background-color: rgb(10, 10, 10);
    margin: 0;
    padding: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

html {
    background-color: rgb(27, 27, 27);
    font-family: 'Roboto', sans-serif;

}

.scroll-container {
    width: 100%;
    max-width: 480px;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
}

.scroll-container::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome, Safari and Opera */
}

.page-header {
    padding: 2px;
    text-align: center;
    position: relative; /* Needed for positioning the plus button */
    font-family: 'Roboto', sans-serif;
}


.morenav {
    position: absolute;
    align-items: center;
    left: 1px;
    top: 10px;
    background-color: #4043ff00;
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
}

.morenav:hover {
    background-color: #31397e00;
}


.plus-button {
    position: absolute;
    align-items: center;
    right: 10px;
    top: 10px;
    background-color: #4043ff00;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.plus-button:hover {
    background-color: #31397e00;
}

.notifications {
    display: flex;
    justify-content: space-around;
    padding: 0;
    width: 100%;
    font-family: 'Roboto', sans-serif;

}

.notification-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px; /* Space between items */
    font-family: 'Roboto', sans-serif;

}

.like-container,
.newf-container,
.coment-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 19px;
    margin-bottom: 4px;
    font-family: 'Roboto', sans-serif;

}

.like-container {
    background-color: #631d2967;
    backdrop-filter: blur(10px); /* Blur effect */    border-radius: 20px;
    box-shadow: 0 0 10px 2px #631d2967;
    font-family: 'Roboto', sans-serif;


}

.newf-container {
    background-color: #06194ec9;
    backdrop-filter: blur(10px); /* Blur effect */    border-radius: 20px;
    box-shadow: 0 0 10px 2px #06194ec9;
    font-family: 'Roboto', sans-serif;


}
.newf-container img{
 width: 43px;
    height: 43px;
    font-family: 'Roboto', sans-serif;


    
}

.coment-container {
    background-color: #065a0a67;
    backdrop-filter: blur(10px); /* Blur effect */    border-radius: 20px;
    box-shadow: 0 0 10px 2px #065a0a67;

}

.icon {
    width: 30px;
    height: 30px;
}

.notification-text {
    margin: 12px;
    font-size: 0.9rem;
    text-align: center;
    font-family: 'Roboto', sans-serif;

}

.latest-messages-container {
    padding-top: 2%;
    width: 95%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-family: 'Roboto', sans-serif;

}

.latest-message,
.latest-activity {
    background-color: #1c1c1c00;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    align-items: center;
    width: 100%;
    font-family: 'Roboto', sans-serif;

}

.activity-picture,
.profile-picture {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    object-fit: cover;
    font-family: 'Roboto', sans-serif;

}

.message-header {
    display: flex;
    align-items: center;
    width: 100%;
    font-family: 'Roboto', sans-serif;

}

.message-info {
    flex: 1;
    margin-left: 10px;
    font-family: 'Roboto', sans-serif;

}

.name {
    margin: 1px;
    margin-bottom: 9px;
    font-size: 1rem;
    color: #fff;
    font-family: 'Roboto', sans-serif;

}
.h4{
    font-weight: 300 ;
    font-family: 'Roboto', sans-serif;

}
.last-message {
    margin: 0;
    font-size: 0.875rem;
    color: #b0b0b0;
    font-family: 'Roboto', sans-serif;

}

.time {
    font-size: 0.9rem;
    color: #ffffff;
    margin-left: auto;
    margin-right: 4%;
    font-family: 'Roboto', sans-serif;

}

/* Remove top white margin on iPhone when bookmarked */
body::before {
    content: '';
    display: block;
    height: env(safe-area-inset-top);
    background-color: black;
    font-family: 'Roboto', sans-serif;

}



.menu-icon {
    width: 25px;
    position: relative;
    left: 4px;
    font-family: 'Roboto', sans-serif;

}