.post-container {
    border-radius: 8px;
    padding: 15px;
    max-width: 800px;
    font-family: Arial, sans-serif;
    border-bottom: 1px solid #ececec;
}

body,
html {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    width: 100%;
    overflow: auto;
    scrollbar-width: none;
}


.post-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
}

.user-info {
    display: flex;
    align-items: center;
}

.user-info img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.user-details {
    display: flex;
    flex-direction: column;
}

.username {
    font-weight: bold;
    font-size: 1em;
}

.user-stats {
    color: #666;
    font-size: 0.85em;
}

.more-options {
    cursor: pointer;
    display: flex;
    align-items: center;
}

.more-options img {
    width: 20px;
    height: 20px;
}

.source-container {
    margin-top: 15px;
    display: flex;
}


.post-actions {
    display: flex;
    flex-direction: column;
    color: #666;
    margin-top: auto;
    margin-left: 20px;
    margin-bottom: 60px;
}

.action-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    flex-direction: column;

}

.action-item i {

    padding: 10px;
    border-radius: 20px;
    color: #000;
    margin: 10px 0 2px;
    align-items: center;
    background: #f1f2f5;
    border-radius: 60px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    margin: 10px 0 2px;
    text-align: center;
}

.action-item img {
    width: 24px;
    height: 24px;
}

.action-item a {
    text-decoration: none;
}

.comment-count {
    color: #f06292;
    font-size: 0.9em;
    display: flex;
    justify-content: center;
}

.comment-section {
    display: flex;
    align-items: center;
    padding: 8px;
    background-color: #eef0f2;
    border-radius: 20px;
    margin-top: 15px;
}

.comment-profile-pic {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
}

.comment-input {
    flex-grow: 1;
    border: none;
    background: none;
    outline: none;
    font-size: 0.9em;
    padding: 5px;
}

.emoji-button,
.send-button {
    border: none;
    background: none;
    cursor: pointer;
    font-size: 1.2em;
    color: #666;
}

.emoji-button:hover,
.send-button:hover {
    color: #333;
}

.send-button {
    padding-bottom: 5px;
}

.comment-icon {
    background-color: #f2718d !important;
    color: white !important;
}

.translation-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-size: 1em;
    color: #333;
    margin-top: 10px;
}

.translation,
.mic {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #333;
}

.translation i,
.mic i {
    margin-right: 5px;
}

.divider {
    width: 1px;
    height: 20px;
    background-color: #ddd;
    margin: 0 10px;
}

.content {
    font-size: 1em;
    color: #444;
    margin: 15px 0;
}

.nugget {
    width: 100%;
}

.nugget video,
.imgGridsize {
    width: 100%;
    max-width: 700px;
    border-radius: 8px;
}



.header-container {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0 15px;
    background-color: #fff;
    box-shadow: 0 3px 6px rgb(0 0 0 / 8%);
    position: fixed;
    top: 0;
    z-index: 1;
}

.header {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1350px;
    padding: 8px 20px;
}

.header .logo img {
    height: 40px;
    margin-right: 20px;
}

.mobile-header {
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    background-color: #f8f9fa;
}

.mobile-header .logo img {
    height: 30px;
}


.nuggetsView {
    display: block;
    margin: auto;
    margin-top: 100px;
    overflow: auto;
    scrollbar-width: none;
    width: 780px;
    max-width: 100%;
}


.like-count {
    display: flex;
    justify-content: center;
    font-size: 0.9em;

}

.rightmenu ul {
    margin-left: 0;
    padding-left: 0;
}


.rightmenu ul li {
    display: inline-block;
    list-style: none;
    padding: 8px 20px;
    line-height: 17px;
    color: #191919;
    font-weight: 700;
    cursor: pointer;
}

.signup {
    background: #61366e;
    margin-left: 10px;
    border-radius: 32px;
    padding: 10px 25px !important;
}

.signup a {
    color: #fff !important;
}

.rightmenu ul li a {
    text-decoration: none;
    color: #191919;
    font-size: 14px;
}

.rightmenu {
    margin-left: auto;
}

.only-content {
    min-width: 700px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 8;
    /* Limits to 8 lines */
    max-height: 15em;
    line-height: 1.5em;
    text-align: justify;
    min-height: 200px;

}

.only-content.expanded {
    display: block;
    /* Removes the line clamp */
    max-height: none;
}

#toggleBtn {
    color: rgb(226, 99, 134);
    cursor: pointer;
    text-decoration: none;
}

#videoSingle {
    background-image: url('../nugget/img/bgImg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 768px) {

    .post-container {
        padding: 10px;
        max-width: 100% !important;
    }

    .emoji-button img {
        height: 1.2em;
    }

    .only-content {
        min-width: 380px !important;
        height: auto;
    }


    .user-info img {
        width: 35px;
        height: 35px;
    }

    .username {
        font-size: 0.9em;
    }

    .user-stats {
        font-size: 0.8em;
    }

    .translation-container {
        font-size: 0.9em;
    }

    .nugget video,
    .imgGridsize {
        max-width: 100%;
    }

    .action-item i {
        padding: 8px;
        margin: 5px 0;
    }

    .content {
        font-size: 0.9em;
    }

    .header {
        display: none;
    }

    .mobile-header {
        display: flex;
        width: 100%;
    }


}

@media (max-width: 480px) {
    .user-info img {
        width: 30px;
        height: 30px;
    }

    .username,
    .user-stats {
        font-size: 0.8em;
    }

    .more-options,
    .translation-container,
    .action-item {
        font-size: 0.8em;
    }

    .comment-profile-pic {
        width: 25px;
        height: 25px;
    }

    .comment-input {
        font-size: 0.8em;
    }

    .post-container {
        padding: 8px;
        max-width: 90% !important;
        font-size: 14px;
        width: 100% !important;
    }

    .only-content {
        min-width: 200px !important;
        height: auto;
    }

    .nuggetsView {
        padding: 0px;
    }

    .post-actions {
        margin-left: 12px !important;
    }

}

@media (max-width: 399px) {
    .post-container {
        padding: 8px;
        max-width: 95% !important;
        font-size: 14px;
        width: 100%;
    }

    .nuggetsView {
        padding-left: 15px;
    }



}

/************** EVENT PAGE STYTING START ******************/

/* General Card Styling */

.event_container {
    padding: 10px;
}

.event_container .card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 16px;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-family: 'Arial', sans-serif;
}

/* Title */
.card-title h2 {
    margin: 0;
    font-size: 20px;
    color: #315887;

    text-align: center;
}

/* Event Time */
.event-time {
    text-align: center;
    color: #555;
    margin: 8px 0;
    font-size: 14px;
}

/* Event Link */
.event-link {
    border-radius: 5px;
    margin: auto;
    margin-bottom: auto;
    margin-bottom: 20px !important;
    max-width: 100%;
    padding: 7px;
    width: fit-content;
    font-size: 14px;
    padding: 10px;
}

.event-link a {
    color: white !important;
    text-decoration: none;
    word-break: break-word;
    font-weight: bold;
}

.copy-button {
    color: white !important;
    font-weight: bold;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
}

/* Event Image */
.event-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 10px 0;
}

/* Event Info */
.event-info {
    margin: 10px 0;
    color: #315887;
    font-size: 14px;
    text-align: center;
}

/* Host Info */
.host-info {
    display: flex;
    align-items: center;
    margin-top: 15px;
    gap: 10px;
    justify-content: center;
}

.host-info img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.host-name {
    font-size: 16px;
    color: #333;
}

/************** EVENT PAGE STYTING END ******************/