/* General Layout */
body {
    background-color: #f0f2f5;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: #1c1e21;
}

.container {
    max-width: 800px;
}

/* Post Cards */
.post-card {
    border: none;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.card-title {
    font-weight: 700;
    color: #1c1e21;
    font-size: 1.25rem;
}

/* Status Indicators */
.status-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.status-Pending { background-color: #e4e6eb; color: #4b4f56; }
.status-Approved { background-color: #e7f3ff; color: #1877f2; }
.status-Rejected { background-color: #ffebe9; color: #fa383e; }
.status-Resubmitted { background-color: #fff4e5; color: #b76e00; } /* New Status Color */

/* Video Responsive Container */
.video-wrapper {
    position: relative;
    width: 100%;
    background: #000;
    line-height: 0;
}

.video-wrapper video {
    width: 100%;
    height: auto;
    max-height: 500px;
    display: block;
}

/* Comments Section */
.comment-item {
    background: #f0f2f5;
    padding: 12px;
    border-radius: 18px;
    margin-bottom: 8px;
}

.comment-user {
    font-weight: bold;
    font-size: 0.9rem;
}

.comment-text {
    font-size: 0.95rem;
    margin-bottom: 0;
}