/* =====================================================
   MODERN MODAL STYLES
   ===================================================== */

/* Modern Modal Container */
.modal-content {
    border: 0;
    border-radius: 12px !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.modal-content:before {
    border-radius: 12px !important;
}

/* Modal Header - Clean and minimal */
.modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-bottom: none;
    padding: 20px 24px;
    position: relative;
}

.modal-header .modal-title {
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: -0.3px;
}

.modal-header .close {
    color: #fff;
    opacity: 0.8;
    text-shadow: none;
    font-size: 28px;
    font-weight: 300;
    padding: 0;
    margin: -5px -5px -5px auto;
    transition: all 0.2s ease;
}

.modal-header .close:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Modal Body - Clean spacing */
.modal-body {
    padding: 24px;
    background: #fff;
}

/* Modal Footer - Modern buttons */
.modal-footer {
    background: #f8f9fa;
    border-top: 1px solid #eee;
    padding: 16px 24px;
    gap: 12px;
}

.modal-footer .btn {
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
}

.modal-footer .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    box-shadow: 0 4px 14px rgba(102, 126, 234, 0.4);
}

.modal-footer .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.modal-footer .btn-light {
    background: #fff;
    border: 1px solid #e0e0e0;
    color: #666;
}

.modal-footer .btn-light:hover {
    background: #f5f5f5;
    border-color: #d0d0d0;
}

/* Form Controls in Modal */
.modal-body .form-control {
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    padding: 12px 16px;
    font-size: 14px;
    transition: all 0.2s ease;
}

.modal-body .form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.modal-body .form-control-label {
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
}

.modal-body .form-group {
    margin-bottom: 20px;
}

/* Modal animations */
.modal.fade .modal-dialog {
    transform: scale(0.95) translateY(-20px);
    transition: transform 0.3s ease;
}

.modal.show .modal-dialog {
    transform: scale(1) translateY(0);
}

/* Error/Success Modal variants */
.modal-header.error-header {
    background: linear-gradient(135deg, #f44336 0%, #e91e63 100%);
}

.modal-header.success-header {
    background: linear-gradient(135deg, #4caf50 0%, #8bc34a 100%);
}

.modal-header.warning-header {
    background: linear-gradient(135deg, #ff9800 0%, #ffc107 100%);
}

/* Responsive modal width */
@media (min-width: 576px) {
    .modal-dialog {
        max-width: 480px;
    }
}

/* Large modal */
.modal-lg {
    max-width: 680px;
}

/* Prayer Post Styles */
.post .answered-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    left: auto;
    background: #28a745;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-bottom: 5px;
}

.post .mark-answered-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    left: auto;
    background: #f8f9fa;
    color: #28a745;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1px solid #28a745;
    transition: all 0.2s;
    margin-bottom: 5px;
}

.post .mark-answered-btn:hover {
    background: #28a745;
    color: white;
}

.post .post-time {
    color: #888888;
    font-size: 11px;
    margin-left: 8px;
}

.post .prayer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.post .prayer-content {
    font-size: 14px;
    line-height: 1.5;
    color: #4a4a4a;
}

.post .prayer-category {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #f0f2f5;
    color: #4a4a4a;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
}

.post .prayer-stats {
    position: absolute;
    bottom: 15px;
    left: 15px;
}

.post .prayer-count {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #24059F;
}

.post .prayer-count .count-number {
    font-weight: 600;
    font-size: 15px;
}

.post .prayer-count .count-label {
    color: #888888;
    font-size: 13px;
}

.post .pray-btn {
    background: #eef2ff;
    color: #24059F;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    cursor: pointer;
}

.post .pray-btn i {
    background: rgba(36, 5, 159, 0.1);
    width: 24px;
    height: 24px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.post .pray-btn:hover {
    background: #24059F;
    color: white;
}

.post .pray-btn:hover i {
    background: rgba(255, 255, 255, 0.2);
}

.post .pray-btn.prayed {
    background: #24059F;
    color: white;
}

.post .pray-btn.prayed i {
    background: rgba(255, 255, 255, 0.2);
}

.post .pray-icon {
    width: 32px;
    height: 32px;
    background: rgba(36, 5, 159, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.post .pray-btn.prayed .pray-icon {
    background: rgba(255, 255, 255, 0.2);
}

.post .pray-meta {
    display: flex;
    flex-direction: column;
}

.post .pray-meta .text {
    font-weight: 600;
    font-size: 14px;
}

.post .pray-meta .count {
    font-size: 12px;
    opacity: 0.8;
}

/* Update footer actions style */
.post .prayer-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    margin-top: 15px;
    border-top: 1px solid #f0f2f5;
}

/* Settings page sidebar divider */
.side-nav-divider {
    border: none;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none;
}

.side-nav-divider span {
    display: block;
    padding: 0 15px;
    font-family: 'Gilroy-Bold', sans-serif !important;
    font-size: 10px;
    letter-spacing: 1px;
}

/* ========================================
   Content Moderation Styles
   ======================================== */

/* Guide Label Badge - for posts needing empathetic engagement */
.post .guide-label-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    margin: 10px 15px;
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border: 1px solid #ffb74d;
    border-radius: 20px;
    color: #e65100;
    font-size: 12px;
    font-weight: 600;
}

.post .guide-label-badge svg {
    color: #ff9800;
}

/* Blur Overlay - for posts with flagged content */
.post .blur-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: inherit;
}

.post .blur-content {
    text-align: center;
    padding: 30px;
    max-width: 300px;
}

.post .blur-content svg {
    color: #9e9e9e;
    margin-bottom: 15px;
}

.post .blur-message {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.post .blur-content .btn {
    border-radius: 20px;
    padding: 8px 20px;
    font-size: 13px;
}

/* Blurred post body (when content is hidden) */
.post.is-blurred .post-body {
    filter: blur(10px);
    pointer-events: none;
    user-select: none;
}

.post.is-blurred .post-actions,
.post.is-blurred .post-stats {
    display: none;
}

/* When blur is revealed */
.post .blur-overlay.hidden {
    display: none;
}

.post.blur-revealed .post-body {
    filter: none;
    pointer-events: auto;
    user-select: auto;
}

.post.blur-revealed .post-actions,
.post.blur-revealed .post-stats {
    display: flex;
}

/* Dark mode support */
.dark-mode .post .blur-overlay {
    background: rgba(30, 30, 30, 0.95);
}

.dark-mode .post .blur-message {
    color: #aaa;
}

.dark-mode .post .guide-label-badge {
    background: linear-gradient(135deg, #3e2723 0%, #4e342e 100%);
    border-color: #8d6e63;
    color: #ffcc80;
}

/* Bot comment styling */
.post-comment.bot-comment {
    background: #f3e5f5;
    border-left: 3px solid #9c27b0;
}

.post-comment.bot-comment .comment-author-name {
    color: #7b1fa2;
}

.post-comment.bot-comment .bot-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    background: #9c27b0;
    color: white;
    border-radius: 10px;
    font-size: 10px;
    margin-left: 8px;
}

.dark-mode .post-comment.bot-comment {
    background: #311b40;
}

/* ========================================
   Facebook-Style Stories
   ======================================== */

/* Stories Container - Horizontal Scrollable */
.stories-wrapper {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 16px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.stories-wrapper::-webkit-scrollbar {
    display: none;
}

/* Individual Story Card - Facebook Style */
.story-card {
    position: relative;
    flex-shrink: 0;
    width: 112px;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 100%);
    transition: transform 0.2s ease;
}

.story-card:hover {
    transform: scale(1.02);
}

.story-card .story-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.story-card .story-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 2;
}

/* Story Avatar with Ring */
.story-card .story-avatar {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    z-index: 3;
    padding: 2px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.story-card .story-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid #fff;
    object-fit: cover;
}

.story-card.seen .story-avatar {
    background: #ccc;
}

/* Story Username */
.story-card .story-username {
    position: absolute;
    bottom: 12px;
    left: 8px;
    right: 8px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    z-index: 3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Create Story Card */
.story-card.create-story {
    background: #f0f2f5;
}

.story-card.create-story .create-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--main-btn, #1877f2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #fff;
    z-index: 3;
}

.story-card.create-story .create-icon i {
    color: #fff;
    font-size: 20px;
}

.story-card.create-story .story-username {
    color: #050505;
    text-shadow: none;
    text-align: center;
}

.story-card.create-story .user-preview {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70%;
    object-fit: cover;
}

/* Story Viewer Modal - Enhanced */
#zuck-modal {
    background: rgba(0, 0, 0, 0.95) !important;
}

#zuck-modal .story-viewer {
    background: #000 !important;
    max-width: 420px;
    margin: 0 auto;
}

#zuck-modal .story-viewer .head {
    background: transparent !important;
    padding: 16px;
}

#zuck-modal .story-viewer .head .left .item-preview {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    margin-right: 10px;
}

#zuck-modal .story-viewer .head .left .info .name {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

#zuck-modal .story-viewer .head .left .info .time {
    color: rgba(255,255,255,0.6);
    font-size: 12px;
}

/* Progress Bars */
#zuck-modal .slides-pointers {
    padding: 8px 16px;
    gap: 4px;
}

#zuck-modal .slides-pointers > span {
    height: 3px;
    border-radius: 2px;
    background: rgba(255,255,255,0.35);
}

#zuck-modal .slides-pointers > span.active {
    background: rgba(255,255,255,0.9);
}

#zuck-modal .slides-pointers > span.seen {
    background: rgba(255,255,255,0.9);
}

/* Story Reply Input */
.story-reply-wrapper {
    position: absolute;
    bottom: 20px;
    left: 16px;
    right: 16px;
    display: flex;
    gap: 10px;
    z-index: 100;
}

.story-reply-input {
    flex: 1;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 24px;
    padding: 12px 20px;
    color: #fff;
    font-size: 14px;
    outline: none;
}

.story-reply-input::placeholder {
    color: rgba(255,255,255,0.6);
}

.story-reaction-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-reaction-btn:hover {
    background: rgba(255,255,255,0.2);
}

/* Dark mode adjustments */
.dark-mode .story-card.create-story {
    background: #242526;
}

.dark-mode .story-card.create-story .story-username {
    color: #e4e6eb;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .story-card {
        width: 100px;
        height: 180px;
    }

    .story-card .story-avatar {
        width: 32px;
        height: 32px;
    }

    .story-card .story-username {
        font-size: 11px;
    }
}

/* ========================================
   Devotional Widget Styles
   ======================================== */

.devotional-widget {
    border-radius: 8px;
    overflow: hidden;
}

.devotional-widget .ele_sidebar_widget_title {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 12px 15px;
}

.devotional-widget .ele_sidebar_widget_title b {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.devotional-widget .ele_sidebar_widget_title b svg {
    opacity: 0.9;
}

.devotional-widget .ele_sidebar_widget_title a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 12px;
}

.devotional-widget .ele_sidebar_widget_title a:hover {
    color: #fff;
}

.devotional-content {
    background: #fff;
}

.devotional-date {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #8e8e8e;
}

.scripture-quote {
    margin: 0;
    padding: 15px;
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
    border-left: 4px solid #667eea;
    border-radius: 0 8px 8px 0;
}

.scripture-quote .verse-text {
    margin: 0 0 10px 0;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    font-style: italic;
}

.scripture-quote .verse-reference {
    font-size: 12px;
    color: #667eea;
    font-weight: 600;
    font-style: normal;
}

.devotional-reflection .reflection-text {
    font-size: 13px;
    line-height: 1.5;
    color: #555;
    margin: 0;
}

/* Dark mode */
.dark-mode .devotional-content {
    background: #242526;
}

.dark-mode .scripture-quote {
    background: linear-gradient(135deg, #2d2d3a 0%, #252530 100%);
    border-left-color: #764ba2;
}

.dark-mode .scripture-quote .verse-text {
    color: #e4e6eb;
}

.dark-mode .scripture-quote .verse-reference {
    color: #a29bfe;
}

.dark-mode .devotional-reflection .reflection-text {
    color: #b0b3b8;
}

/* ========================================
   Prayer Wall Widget Styles
   ======================================== */

.prayer-wall-widget {
    border-radius: 8px;
    overflow: hidden;
}

.prayer-wall-widget .ele_sidebar_widget_title {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    padding: 12px 15px;
}

.prayer-wall-widget .ele_sidebar_widget_title b {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.prayer-wall-widget .ele_sidebar_widget_title a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 12px;
}

.prayer-wall-widget .ele_sidebar_widget_title a:hover {
    color: #fff;
}

.prayer-wall-content {
    background: #fff;
}

.quick-prayer-form .btn {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.quick-prayer-form .btn:hover {
    opacity: 0.9;
}

.prayer-request-item {
    transition: background 0.2s;
}

.prayer-request-item:hover {
    background: #f8f9fa;
}

.prayer-avatar img {
    object-fit: cover;
}

.prayer-username {
    font-size: 13px;
    color: #1a1a1a;
    text-decoration: none;
}

.prayer-username:hover {
    text-decoration: underline;
}

.prayer-time {
    font-size: 11px;
}

.prayer-text {
    font-size: 13px;
    line-height: 1.5;
    color: #444;
    margin: 0;
}

.prayer-category {
    font-size: 10px;
    padding: 3px 8px;
}

.prayer-btn {
    font-size: 12px;
    padding: 4px 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    border-color: #11998e;
    color: #11998e;
}

.prayer-btn:hover {
    background: #11998e;
    color: #fff;
    border-color: #11998e;
}

.prayer-btn.prayed {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: #fff;
    border-color: #11998e;
}

.pray-count {
    font-size: 11px;
    opacity: 0.8;
}

.no-prayers svg {
    color: #ccc;
}

.no-prayers p {
    color: #999;
}

/* Dark mode */
.dark-mode .prayer-wall-content {
    background: #242526;
}

.dark-mode .prayer-request-item:hover {
    background: #3a3b3c;
}

.dark-mode .prayer-username {
    color: #e4e6eb;
}

.dark-mode .prayer-text {
    color: #b0b3b8;
}

.dark-mode .prayer-category {
    background: #3a3b3c;
    color: #b0b3b8;
}

.dark-mode .no-prayers svg {
    color: #555;
}

.dark-mode .no-prayers p {
    color: #777;
}

/* ========================================
   Mild Insult Warning Styles
   ======================================== */

/* Warning Banner - Red background indicator */
.content-warning-banner {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    margin: 10px 15px;
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    border: 1px solid #ef9a9a;
    border-left: 4px solid #f44336;
    border-radius: 8px;
    font-size: 12px;
    color: #c62828;
}

.content-warning-banner svg,
.content-warning-banner i {
    color: #f44336;
    flex-shrink: 0;
}

.content-warning-banner .warning-text {
    flex: 1;
    line-height: 1.4;
}

.content-warning-banner .warning-title {
    font-weight: 600;
    display: block;
    margin-bottom: 2px;
}

.content-warning-banner .warning-message {
    color: #d32f2f;
    font-size: 11px;
}

/* Post with warning - subtle red tint */
.post.has-warning {
    border-left: 3px solid #f44336;
}

.post.has-warning .post-body {
    position: relative;
}

/* Comment with warning */
.post-comment.has-warning {
    background: linear-gradient(135deg, #fff8f8 0%, #fff0f0 100%);
    border-left: 3px solid #f44336;
}

.post-comment.has-warning .content-warning-banner {
    margin: 8px 0;
    padding: 8px 12px;
}

/* Comment warning banner (inline) */
.comment-warning-banner {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    margin-top: 6px;
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    border-left: 3px solid #f44336;
    border-radius: 4px;
    font-size: 11px;
    color: #c62828;
    line-height: 1.4;
}

.comment-warning-banner svg {
    color: #f44336;
    flex-shrink: 0;
}

/* Chat warning banner (inline) */
.chat-warning-banner {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 8px;
    margin-top: 5px;
    background: rgba(244, 67, 54, 0.1);
    border-left: 2px solid #f44336;
    border-radius: 3px;
    font-size: 10px;
    color: #c62828;
    line-height: 1.3;
}

.chat-warning-banner svg {
    color: #f44336;
    flex-shrink: 0;
}

/* Chat message with warning */
.message.has-warning {
    background: linear-gradient(135deg, #fff8f8 0%, #fff0f0 100%) !important;
    border: 1px solid #ffcdd2;
}

.message.has-warning .content-warning-banner {
    margin: 5px 0 0 0;
    padding: 6px 10px;
    font-size: 11px;
    background: rgba(244, 67, 54, 0.1);
    border: none;
    border-left: 3px solid #f44336;
    border-radius: 0 6px 6px 0;
}

/* Warning info icon tooltip style */
.warning-info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: #f44336;
    color: white;
    border-radius: 50%;
    font-size: 10px;
    font-weight: bold;
    cursor: help;
    margin-left: 5px;
}

/* Dark mode support */
.dark-mode .content-warning-banner {
    background: linear-gradient(135deg, #3d2222 0%, #4a2525 100%);
    border-color: #6d3030;
    border-left-color: #f44336;
    color: #ffcdd2;
}

.dark-mode .content-warning-banner .warning-message {
    color: #ef9a9a;
}

.dark-mode .post.has-warning {
    border-left-color: #f44336;
}

.dark-mode .post-comment.has-warning {
    background: linear-gradient(135deg, #2d1f1f 0%, #352222 100%);
}

.dark-mode .message.has-warning {
    background: linear-gradient(135deg, #2d1f1f 0%, #352222 100%) !important;
    border-color: #4a2525;
}

/* Animation for warning appearance */
@keyframes warningPulse {
    0% { opacity: 0; transform: translateY(-5px); }
    100% { opacity: 1; transform: translateY(0); }
}

.content-warning-banner {
    animation: warningPulse 0.3s ease-out;
}

/* Warning count indicator - for admin view */
.warning-count-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    background: #f44336;
    color: white;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 600;
}

/* Dismissible warning */
.content-warning-banner .dismiss-warning {
    padding: 4px;
    background: transparent;
    border: none;
    color: #c62828;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.content-warning-banner .dismiss-warning:hover {
    opacity: 1;
}

/* =====================================================
   PRAYER ROOMS & LIVE SESSIONS
   ===================================================== */

/* Prayer Room Card */
.prayer-room-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.prayer-room-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.prayer-room-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.prayer-room-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.prayer-room-privacy {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
}

.prayer-room-privacy.public {
    background: #e8f5e9;
    color: #2e7d32;
}

.prayer-room-privacy.private {
    background: #fff3e0;
    color: #ef6c00;
}

.prayer-room-description {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.prayer-room-stats {
    display: flex;
    gap: 20px;
    padding: 12px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 16px;
}

.prayer-room-stat {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #666;
    font-size: 13px;
}

.prayer-room-stat svg {
    color: #999;
}

.prayer-room-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.prayer-room-actions .btn {
    flex: 1;
    min-width: 120px;
}

/* Subscribe Button */
.btn-subscribe {
    background: #f0f0f0;
    color: #333;
    border: none;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.btn-subscribe:hover {
    background: #e0e0e0;
}

.btn-subscribe.subscribed {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.btn-subscribe.subscribed:hover {
    opacity: 0.9;
}

/* Live Session Button */
.btn-live-session {
    background: linear-gradient(135deg, #f44336 0%, #e91e63 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.btn-live-session:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(244, 67, 54, 0.4);
    color: #fff;
}

/* Live Badge */
.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: #f44336;
    color: #fff;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    animation: livePulse 2s infinite;
}

.live-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: liveDot 1s infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

@keyframes liveDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

/* Live Session Card */
.live-session-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 16px;
    padding: 24px;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.live-session-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

.live-session-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.live-session-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.live-session-host {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.live-session-host img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
}

.live-session-host-info {
    font-size: 13px;
}

.live-session-host-name {
    font-weight: 500;
}

.live-session-host-label {
    color: rgba(255,255,255,0.6);
    font-size: 11px;
}

/* Participants Grid */
.live-participants {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.live-participant {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.live-participant-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    position: relative;
    overflow: visible;
}

.live-participant-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.live-participant-avatar.speaking {
    box-shadow: 0 0 0 3px #4caf50, 0 0 20px rgba(76, 175, 80, 0.5);
}

.live-participant-avatar.muted::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 20px;
    height: 20px;
    background: #f44336 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Cline x1='1' y1='1' x2='23' y2='23'%3E%3C/line%3E%3Cpath d='M9 9v3a3 3 0 0 0 5.12 2.12M15 9.34V4a3 3 0 0 0-5.94-.6'%3E%3C/path%3E%3Cpath d='M17 16.95A7 7 0 0 1 5 12v-2m14 0v2a7 7 0 0 1-.11 1.23'%3E%3C/path%3E%3Cline x1='12' y1='19' x2='12' y2='22'%3E%3C/line%3E%3C/svg%3E") center center no-repeat;
    border-radius: 50%;
    background-size: 12px;
}

.live-participant-name {
    font-size: 11px;
    color: rgba(255,255,255,0.8);
    text-align: center;
    max-width: 60px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Voice Controls */
.live-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.live-control-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.live-control-btn.mute {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.live-control-btn.mute:hover {
    background: rgba(255,255,255,0.2);
}

.live-control-btn.mute.active {
    background: #f44336;
}

.live-control-btn.leave {
    background: #f44336;
    color: #fff;
}

.live-control-btn.leave:hover {
    background: #d32f2f;
    transform: scale(1.05);
}

.live-control-btn.raise-hand {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.live-control-btn.raise-hand:hover {
    background: rgba(255,255,255,0.2);
}

.live-control-btn.raise-hand.active {
    background: #ffc107;
    color: #333;
}

/* Scheduled Sessions */
.scheduled-session {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    border-left: 4px solid #667eea;
}

.scheduled-session-time {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #667eea;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 8px;
}

.scheduled-session-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.scheduled-session-host {
    font-size: 13px;
    color: #666;
}

/* Dark Mode */
.dark-mode .prayer-room-card {
    background: #242526;
}

.dark-mode .prayer-room-title {
    color: #e4e6eb;
}

.dark-mode .prayer-room-description {
    color: #b0b3b8;
}

.dark-mode .prayer-room-stats {
    border-color: #3a3b3c;
}

.dark-mode .scheduled-session {
    background: #242526;
}

.dark-mode .scheduled-session-title {
    color: #e4e6eb;
}
