.comment-post {
    /* Base styles */
    max-width: 1200px;
    margin: 0 auto;
}

.comment-post .post-header {
    background-color: var(--base-gray-percent);
}

.comment-post .post-body {
    /* Base styles */
}

.comment-post .post-body .video-box {
    height: 450px;
    box-shadow: 0 2px 8px 0 var(--base-dark-gray);
    border: 1px solid var(--base-gray);
}

.comment-post .post-body .video-box video {
    background-color: var(--base-gray-percent);
}

.comment-post .post-body .content-box {
    flex: 1;
}

.comment-post .post-body .content-loading {
    height: 280px;
}

@media (max-width: 768px) {
    .comment-post {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .comment-post .post-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 1rem !important;
    }

    .comment-post .post-header .me-12 {
        margin-top: 1rem !important;
        margin-right: 0 !important;
    }

    .comment-post .post-body {
        flex-direction: column !important;
        gap: 1rem !important;
    }

    .comment-post .post-body .video-box,
    .comment-post .post-body .content-box {
        width: 100% !important;
    }

    .comment-post .post-body .video-box {
        height: auto;
    }

    .comment-post .post-body .video-box video {
        height: auto !important;
        width: 100% !important;
    }

    .comment-post .post-body .content-loading {
        height: auto;
    }
}

.upload-progress {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    width: 300px;
}

.upload-progress .progress-bar {
    height: 6px;
    background: #007bff;
    border-radius: 3px;
    transition: width 0.3s ease;
}

.upload-progress .progress-text {
    margin-top: 5px;
    font-size: 12px;
    color: #666;
    text-align: center;
}