/* Community Single Page Specific Styles */
.community-placeholder-large {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.community-initials-large {
    font-size: 4rem;
    font-weight: bold;
    color: white;
}

.share-btn i {
    display: inline-block !important;
    margin-right: 8px !important;
    font-size: 16px !important;
    width: auto !important;
    height: auto !important;
}

/* Community specific meta items */
.community-meta .meta-item {
    background: rgba(35, 47, 62, 0.9);
    border: 1px solid rgba(102, 126, 234, 0.3);
}

.community-meta .meta-item:hover {
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.2);
}

.community-meta .meta-item::before {
    background: linear-gradient(180deg, #667eea, #764ba2);
}

/* Community action buttons */
.community-actions .btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-color: transparent;
}

.community-actions .btn-primary:hover {
    background: linear-gradient(135deg, #5a67d8, #6b46c1);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

/* Community stats styling */
.community-stats .stat-number {
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Loading states for community actions */
.btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn.loading .fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Community status badge */
.community-status {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* Responsive adjustments for community page */
@media (max-width: 768px) {
    .community-initials-large {
        font-size: 3rem;
    }
    
    .community-placeholder-large {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .community-initials-large {
        font-size: 2.5rem;
    }
    
    .community-placeholder-large {
        height: 200px;
    }
}