/* LIKE BUTTON CSS */

.heart {
    width: 24px;
    height: 24px;
    cursor: pointer;
    margin-right: 3px;
    transition: fill 0.3s ease;
}
.heart path {
    fill: none;
    stroke: #000;
}
.liked path {
    fill: #e0245e;
    stroke: none;
}

/* LIKE BUTTON CSS END */

/* MESSAGES CSS STARTS */


.user-list {
    margin-bottom: 20px;
}
.user-list ul {
    list-style-type: none;
    padding: 0;
}
.user-list li {
    margin: 5px 0;
}
.message-container {
    display: flex;
    flex-direction: column;
}
.message {
    max-width: 60%;
    margin: 10px 0;
    padding: 5px 5px 1px 5px;
    border-radius: 10px;
    position: relative;
    display: inline-block;
}
.message-sent {
    align-self: flex-end;
    background-color: #dcf8c6;
    text-align: left;
}
.message-received {
    align-self: flex-start;
    background-color: #9e9e9e36;
    text-align: left;
}
.time {
    font-size: 0.6em;
    color: #999;
    display: block;
    margin-top: 0px;
    text-align: right;
}
.sentmsg{
    display: flex;
    margin-bottom: 0;
}
.recmsg{
    display: flex;
    margin-bottom: 0;
}
/* MESSAGES CSS END */

/* IMAGE ICON */

.profile-icon-name{
    width: 38px; 
    height: 35px;
    margin-right: 5px !important; 
    background-color: #490212;
}
.profile-icon-letter{
    font-size: 23px; 
}

.userprofile-icon-name{
    width: 100px; 
    height: 100px;
    margin-right: 5px !important; 
    background-color: #490212;
}
.userprofile-icon-letter{
    font-size: 62px; 
}

.name-icon{
    display: flex;
    background-color: #490212;
    width: 35px !important;
    height: 35px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    margin-right: 5px;
    color:#fff;
}

.name-icon-reply{
display: flex;
    background-color: #490212;
    width: 20px !important;
    height: 20px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    margin-right: 5px;
    color:#fff;
}

/* IMAGE ICON END */

/* COMMENT CONTENT */
.commentContent{
    margin-left: 38px; 
    color: gray; 
    margin-top: -10px;
}

/* Post Time */
.post-time{
    font-size: 7px;
    margin-left: 1px;
}

/* Dots Icon Arrow Remove */
.dropdown-toggle::after {
    display: none;
}
.dots:after {
    content: '\2807';
    font-size: 25px;
    }
.dropdown a:hover{
    color: #000;
    text-decoration: none;

}

.commentBtn{
    border: 1px solid;
    border-radius: 10px;
    font-size: 8px;
    padding: 2px;
}
.notiPost{
    display: flex;
    background-color: #490212;
    width: 35px !important;
    height: 35px;
    border-radius: 10%;
    justify-content: center;
    align-items: center;
    margin-right: 5px;
    color:#fff;
}

#spinner {
    border: 4px solid white;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% { transform: rotate(360deg); }
}

#loading-container {
    display: flex;
    align-items: center;
    position: fixed;
    left: 50%;
    top: 90%;
    transform: translate(-50%, -50%);
    z-index: 1000;
}

.profile-icon{
    display: flex;
    background-color: #490212;
    width: 23px !important;
    height: 23px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    margin-right: 5px;
    color:#fff;
}

.suggest-icon{
    display: flex;
    background-color: #490212;
    width: 32px !important;
    height: 32px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    margin-right: 5px;
    color:#fff;
}

.profile-icon-big{
    display: flex;
    background-color: #490212;
    width: 150px !important;
    height: 150px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    margin-right: 5px;
    color:#fff;
}
.important {
    font-size: 20px !important; /* Adjust the size as needed */
    font-weight: bold; /* You can also add other styles here */
}


    .ajax-load {
        background: #e1e1e1;
        padding: 10px 0px;
        width: 100%;
    }

    body {
        padding-top: 56px;
    }

    .wrapper {
        display: flex;
        flex-direction: row;
        overflow: hidden;
    }

    /* Ensure sidebar has a higher z-index to appear on top */
.sidebar {
    width: 250px;
    position: fixed; /* Fixed positioning to keep it on top */
    height: 100%;
    background-color: #f8f9fa;
    padding-top: 20px;
    z-index: 1000; /* Higher than content */
    transition: transform 0.3s ease; /* Smooth transition */
    transform: translateX(-250px); /* Initially hidden */
}

/* Class to show the sidebar */
.sidebar.open {
    transform: translateX(0); /* Show sidebar */
}

/* Ensure content area shifts to make room for the sidebar */
.content {
    margin-left: 0; /* Default margin for no sidebar */

    flex-grow: 1;
    transition: margin-left 0.3s ease; /* Smooth transition */
}

.sidebar.open + .content {
    margin-left: 250px; /* Adjust margin to show content alongside the sidebar */
}

    .content.with-sidebar {
        margin-left: 250px;
    }

    @media (min-width: 768px) {
        .sidebar {
            transform: translateX(0);
        }

        .content {
            margin-left: 250px;
        }
    }

  
   
   
   

