.ffp-post {
    border: 1px solid #ffc0cf;
    padding: 5px;
    margin-bottom: 20px;
    border-radius: 8px;
    background-color: #ffc0cf9a;
}

.ffp-post-title {
    border-radius: 8px;
    font-size: 40px;
    margin-bottom: 10px;
    font-weight: bold;
    color: #6b182b !important;
}

.ffp-post-description {
    position: relative;
    max-height: calc(1.5em * 10); /* 10 lines at 1.5 line-height */
    overflow: hidden;
    transition: max-height 0.3s ease;
    line-height: 1.5em;
    border-radius: 8px;
    background-color: #ffc0cf9a;
    font-size: 20px;
    color: #6b182b;
}
.ffp-post-description.expanded {
    max-height: none;
}

.ffp-toggle-description {
    display: inline-block;
    margin-top: 5px;
    color: #6b182b;
    cursor: pointer;
    font-weight: bold; 
}

.ffp-post-time {
    border-radius: 8px;
    font-size: 12px;
    font-weight: bold;
    color: #6b182b;
    margin-top: 10px;
}

.ffp-post-author {
    border-radius: 8px;
    font-size: 12px;
    font-weight: bold;
    color: #6b182b;
    margin-top: 10px;
}

.ffp-post-etitle {
    background-color:#ffc0cf9a !important;
    border-radius: 8px;
    font-size: 12px;
    font-weight: bold;
    color: #6b182b;
    margin-top: 10px;
}

.ffp-post-edescription {
    background-color:#ffc0cf9a;    
    border-radius: 8px;
    font-size: 12px;
    font-weight: bold;
    color: #6b182b;
    margin-top: 10px;
}

.ffp-post-edescription:focus {
    background-color: #ffc0cf9a; /* Keep background white */
    outline: none; /* Removes the blue/black focus ring */
    box-shadow: none; /* No glow effect */
}

.ffp-post-etags {
    background-color:#ffc0cf9a !important;
    border-radius: 8px;
    font-size: 12px !important;
    font-weight: bold !important;
    color: #6b182b;
    margin-top: 10px;
}

.ffp-post-rtitle {
    background-color:#ffc0cf9a !important;
    border-radius: 8px;
    font-size: 12px;
    font-weight: bold; 
    color: #6b182b;
    margin-top: 10px;
}

.ffp-post-rdescription {
    background-color:#ffc0cf9a !important;    
    border-radius: 8px;
    font-size: 12px;
    font-weight: bold;
    color: #6b182b;
    margin-top: 10px;
}

.ffp-post-rdescription:focus {
    background-color: #ffc0cf9a !important; /* Keep background white */
    outline: none; /* Removes the blue/black focus ring */
    box-shadow: none; /* No glow effect */
}

.ffp-post-rtags {
    background-color:#ffc0cf9a !important;
    border-radius: 8px;
    font-size: 12px;
    font-weight: bold;
    color: #6b182b;
    margin-top: 10px;
}

.ffp-main-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row; /* desktop: sidebar left, posts right */
}

/* Sidebar */
.ffp-filter-container {
    min-width: 160px;
    max-width: 200px;
    padding-right: 10px;
    background: #ffc0cf9a;
    border: 1px solid #ffc0cf !important;
    border-radius: 6px;
}

/* Posts area */
.ffp-posts-container {
    flex: 1;
    padding-left: 20px;
}
.ffp-comment {
    background-color:#ffc0cf9a !important;
    border-radius: 8px;
    font-size: 17px;
    color: #6b182b;
    margin-top: 10px;
}
.hidden-comment {
    display: none;
}

