.mainbox {
    width: 100vw;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    margin-top: 5vh;
}

.box-container {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 60%;
    margin-top: 20px;
}

.top-left-box {
    width: 100%;
    max-width: 300px;
    display: flex;
    align-items: center;
}

.content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-1 {
    width: 90%;
    max-width: 1200px;
    padding: 20px;
}

.product {
    width: 100%;

}

.product h1 {
    font-size: 2rem;
}

.product p {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .mainbox {
        margin-top: 2vh;
        padding: 10px;
    }

    .box-container {
        width: 95%;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .box-container {
        width: 100%;
        padding: 10px;
    }
}

.event .nav-tabs .nav-link {
    position: relative;
    border: 0;
    color: #4b566b !important;
    font-weight: normal;
}

.avatar-info .h4,
.avatar-info h4 {
    font-size: 13px;
    margin-bottom: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.comment-wrap ul.comment-item-nested.list-unstyled {
    padding-left: 45px;
}

.post-react {
    position: relative;
    z-index: 1;
}

.post-react lis {
    display: inline-block;
    z-index: 1;
}

.e_comment {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    /* Allows items to wrap if needed */
    gap: 15px;
    /* Adjust spacing */
}

.e_comment ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 5px;
    /* Space between reaction icons */
}

.post-react ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
    align-items: center;
    gap: 5px;
    /* Space between reaction icons */
}

.post-react ol {
    padding: 0;
    margin: 0;
    gap: 5px;
    /* list-style: none; */
    /* Space between reaction icons */
}

.post-react ol li {

    list-style: none;
    /* Space between reaction icons */
}

.post-react ol li img {
    margin-right: 2px;
    width: 21px !important;
}

.post-comment ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    /* Space between comment and share */
}

.react-list {
    display: none;
    position: absolute;
    background: white;
    border-radius: 5px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
    padding: 5px;
    z-index: 100;
}

.post-react {
    position: relative;
}

.post-react:hover .react-list {
    display: flex;
    padding: 10px;
    background: white;
    border-radius: 25px;
}

.entry-footer {
    display: 'inline-block';
    width: 100%;
}

.entry-meta {
    float: right;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    /* Adjust grid based on images */
    gap: 10px;
}

.picture {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
}

.media-image {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
}

.react-icons img {
    display: block !important;
    width: auto !important;
    height: auto !important;
    max-width: 50px !important;
    /* Adjust as needed */
}

.share {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 250px;
    background: white;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    padding: 20px;
    text-align: center;
}

.share-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}
.close-btn {
    margin-top: 20px;
    cursor: pointer;
    padding: 5px 10px;
    color: #49484f;
    border: none;
    border-radius: 5px;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-box {
    width: 350px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
    position: relative;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
}

.modal-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}
.social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    transition: background 0.3s ease-in-out;
}
.social-icons a i {
    font-size: 30px;
}

.share-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}
.btn-option {
    background: transparent;
    border: 1px solid #1B7FED;
    color: #1B7FED;
    padding: 8px;
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}
.btn-option:hover {
    background: #1B7FED;
    color: white;
}

.btn-share {
    background: #1B7FED;
    color: white;
    padding: 10px;
    width: 100%;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}
.btn-share:hover {
    background: #1B7FED;
}
#shareModal {
    z-index: 1060 !important;
    /* Higher than Bootstrap default (1050) */
}
#confirmDeleteModal {
    z-index: 1060 !important;
    /* Higher than Bootstrap default (1050) */
}

.tag-card a {
    display: inline-block;
    padding: 5px 15px;
    background: #fafafa;
    border-radius: 5px;
    margin-right: 10px;
    position: relative;
}

.tag-card a:before {
    position: absolute;
    content: "\f00d";
    font-family: fontawesome;
    background-color: #5a2ff9;
    width: 20px !important;
    height: 20px !important;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    left: 90%;
    text-align: center;
    line-height: 20px;
    color: #fff;
    top: -7px;
    font-size: 9px;
}

.feeling-list ul {
    margin: 0;
    padding: 0;
    list-style: none
}

.post-inner .tag-wrap .tag-card {
    border-color: var(--border-color);
}

.feeling-list ul li a {
    padding: 10px 15px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
    display: block
}

.feeling-list ul li a img {
    margin-right: 8px
}


.feeling-list.feeling-alt ul {
    width: 45%
}


.feeling-list.feeling-alt ul li a {
    padding: 5px 15px
}

.feeling-list.feeling-alt ul li a span {
    background: #fafafa;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    line-height: 45px;
    margin-right: 5px
}

.feeling-list.feeling-alt ul li a img {
    margin: 0
}

.feeling-list.feeling-alt ul li a span {
    background-color: transparent;
}

.suggesions input::placeholder {
    color: var(--text-color) !important;
}

.feeling-list ul li a:hover {
    background-color: var(--hover-color);
    color: var(--color-global);
    background-color: #fafafa
}

.post-inner {
    display: none;
}

.post-inner.current {
    display: block !important;
}

.feeling-list.feeling-alt ul {
    width: 45%
}

.feeling-list.feeling-alt ul:first-child {
    margin-right: 40px
}

.feeling-list.feeling-alt ul li a {
    padding: 5px 15px
}

.feeling-list.feeling-alt ul li a span {
    background: #fafafa;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    line-height: 45px;
    margin-right: 5px
}

.feeling-list.feeling-alt ul li a img {
    margin: 0
}

.feeling-list.feeling-alt ul li a span {
    background-color: transparent;
}

.suggesions input::placeholder {
    color: var(--text-color) !important;
}

.post-inner {
    display: none;
}

.post-inner.current {
    display: block !important;
}

.font-size-15 {
    font-size: 15px;
}
.social-share ul li {
    display: inline-block;
    margin-left: 5px;
}