body {
    background-color: #f0f2f5;
}
.card {
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.error {
    color: red;
}

.sidebar, .post-box {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
    padding: 15px;
    font-size: 18px;
}

.sidebar p {
    cursor: pointer;
    padding: 6px;
    border-radius: 5px;
}

.sidebar p:hover {
    background-color: #f0f2f5;
}

i{
    margin-right: 10px;
}

.story{
    height: 120px;
    background: linear-gradient(135deg, #1877f2, #42b72a);
    color: #fff;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    align-items: flex-end;
    font-size: 0.9rem;
}

.nav-icons i {
    cursor: pointer;
    transition: 0.3s;
}
.nav-icons i:hover {
    color: #0d6efd;
    transform: scale(1.1);
}

.cover-photo {
    background-image: url("../IMG/cover-photo.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    height: 380px;
    border-radius: 0px 0px 15px 15px;
}

.profile-photo {
    width: 120px;
    height: 120px;
    border: 8px solid #fff;
    border-radius: 50%;
    object-fit: cover;
    margin-top: -75px;
    text-align: center;
}

.photo-img {
    width: 100%;
    height: 60px;
    object-fit: cover;
}