body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #fdfdfd;
}

.sidebar-left {
    border-right: 1px solid #ddd;
    padding-right: 1rem;
}

.sidebar-left h5 {
    font-weight: bold;
}


.quote-card img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.quote-footer span {
    margin-right: 4rem;
    color: #555;
    cursor: pointer;
}

.quote-footer span:hover {
    color: #000;
}

.quote-footer a {
    text-decoration: none;
}


.top-posts a {
    text-decoration: none;
    color: #333;
    display: block;
    padding: 0.25rem 0;
}

.top-posts a:hover {
    text-decoration: underline;
}

.sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: #fdf5f4;
    color: #e23a19;
    padding: 2rem;
    transition: right 0.3s ease;
    z-index: 1000;
}

.sidebar.active {
    right: 0;
}

.sidebar .close {
    font-size: 30px;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 30px;
}

.sidebar ul {
    list-style: none;
    padding: 0;
    margin-top: 100px;
    text-align: center;
}

.sidebar ul li {
    margin: 30px 0;
    font-size: 1.5rem;
}

.sidebar ul li a {
    color: #e23a19;
    text-decoration: none;
}

.avatar {
    width: 40px;
    /* or any size you like */
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    /* keeps the image nicely cropped */
    border: 2px solid #ccc;

}

/* Popup overlay */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 999;
}

/* Share popup */
.share-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    max-width: 90%;
    text-align: center;
}

/* Social links inline */
#social-links ul {
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
    list-style: none;
}

#social-links ul li {
    display: inline-block;
    margin: 0 10px;
}

#social-links ul li a {
    font-size: 24px;
    color: #333;
    text-decoration: none;
}

#social-links ul li a:hover {
    color: #007bff;
}

.like-toggle {
    color: #333;
    text-decoration: none;
}

.share-btn {
    color: #333;
    text-decoration: none;
    cursor: pointer;
}

.bi-list {

    cursor: pointer;
}

.bi-bell {
    cursor: pointer;
}