/* peteITcms Stream - Activity Feed Styles */

:root {
    --community-bg: #0b141a;
    --community-container: #202c33;
    --community-secondary: #2a3942;
    --community-input: #2a3942;
    --community-border: #3e4c56;
    --community-text: #e9edef;
    --community-text-secondary: #8696a0;
    --community-primary: #00a884;
    --community-primary-hover: #06cf9c;
    --community-danger: #ef4444;
}

body {
    background: var(--community-bg);
    color: var(--community-text);
}

.peteitcms-stream-container {
    max-width: 100%;
    margin: 0 auto;
}

/* Feed Header */
.feed-header {
    margin-bottom: 30px;
}

.feed-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.feed-header-content h2 {
    margin: 0;
    font-size: 28px;
    color: var(--community-text);
}

/* Create Post */
.feed-create-post {
    background: var(--community-container);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: flex;
    gap: 15px;
}

.create-post-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.create-post-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.create-post-form {
    flex: 1;
}

.create-post-form textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--community-input);
    border: 1px solid var(--community-border);
    border-radius: 8px;
    color: var(--community-text);
    font-size: 15px;
    resize: vertical;
    min-height: 80px;
    font-family: inherit;
}

.create-post-form textarea:focus {
    outline: none;
    border-color: var(--community-primary);
    box-shadow: 0 0 0 3px rgba(0, 168, 132, 0.1);
}

.image-preview {
    margin-top: 15px;
    position: relative;
    max-width: 300px;
}

.image-preview img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.btn-remove-image {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-remove-image:hover {
    background: var(--community-danger);
}

/* Audio Recorder */
.audio-recorder {
    background: var(--community-secondary);
    border: 1px solid var(--community-border);
    border-radius: 8px;
    padding: 15px;
    margin-top: 15px;
}

.recorder-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-record {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: var(--community-primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-record:hover {
    background: var(--community-primary-hover);
    transform: scale(1.1);
}

.btn-record.btn-stop {
    background: #e74c3c;
}

.btn-record.btn-stop:hover {
    background: #c0392b;
}

.recording-time {
    color: var(--community-text);
    font-weight: 600;
    font-family: monospace;
    font-size: 16px;
    min-width: 50px;
}

.btn-remove-audio {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    color: var(--community-text-secondary);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: auto;
}

.btn-remove-audio:hover {
    background: var(--community-danger);
    color: white;
}

.audio-preview {
    margin-top: 15px;
}

.audio-preview audio {
    width: 100%;
    height: 40px;
}

/* Audio File Preview */
.audio-file-preview {
    background: var(--community-secondary);
    border: 1px solid var(--community-border);
    border-radius: 8px;
    padding: 15px;
    margin-top: 15px;
}

.audio-file-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.audio-file-info svg {
    stroke: var(--community-primary);
    flex-shrink: 0;
}

.stream-audio-file-name {
    color: var(--community-text);
    font-size: 14px;
    font-weight: 500;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.btn-remove-audio-file {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    color: var(--community-text-secondary);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-remove-audio-file:hover {
    background: var(--community-danger);
    color: white;
}

.audio-file-preview audio {
    width: 100%;
    height: 40px;
}

/* Video File Preview */
.video-file-preview {
    background: var(--community-secondary);
    border: 1px solid var(--community-border);
    border-radius: 8px;
    padding: 15px;
    margin-top: 15px;
}

.video-file-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.video-file-info svg {
    stroke: var(--community-primary);
    flex-shrink: 0;
}

.stream-video-file-name {
    color: var(--community-text);
    font-size: 14px;
    font-weight: 500;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.btn-remove-video-file {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    color: var(--community-text-secondary);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-remove-video-file:hover {
    background: var(--community-danger);
    color: white;
}

.video-file-preview video {
    width: 100%;
    max-height: 400px;
    border-radius: 8px;
}

/* Button Styles für Video/Audio Upload */
.btn-add-video-file,
.btn-add-audio-file,
.btn-add-audio {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: var(--community-input);
    color: var(--community-text);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-video-file:hover,
.btn-add-audio-file:hover,
.btn-add-audio:hover {
    background: var(--community-border);
    transform: scale(1.1);
}

.btn-add-video-file svg,
.btn-add-audio-file svg,
.btn-add-audio svg {
    stroke: var(--community-primary);
}

/* Feed Post Audio Display */
.feed-post-audio {
    margin-top: 15px;
    background: var(--community-secondary);
    border-radius: 8px;
    padding: 10px;
}

.feed-post-audio audio {
    width: 100%;
    height: 40px;
}

/* Feed Post Video Display */
.feed-post-video {
    margin-top: 15px;
    background: var(--community-secondary);
    border-radius: 8px;
    padding: 10px;
}

.feed-post-video video {
    width: 100%;
    max-height: 500px;
    border-radius: 8px;
}

.create-post-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.action-buttons-left {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-add-image {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: var(--community-input);
    color: var(--community-text);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-image:hover {
    background: var(--community-border);
    transform: scale(1.1);
}

.btn-add-image svg {
    stroke: var(--community-primary);
}

.btn-post-submit {
    width: 44px;
    max-width: 44px;
    height: 44px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--community-primary);
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-post-submit:hover {
    background: var(--community-primary-hover);
    transform: scale(1.05);
}

.btn-post-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.form-message {
    margin-top: 10px;
    padding: 10px;
    border-radius: 6px;
    font-size: 14px;
    display: none;
}

.form-message.success {
    background: rgba(0, 168, 132, 0.1);
    color: var(--community-primary);
    border: 1px solid var(--community-primary);
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: var(--community-danger);
    border: 1px solid var(--community-danger);
}

/* Feed Posts */
.feed-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: 200px; /* Verhindert Layout-Shift */
}

.loading-spinner {
    text-align: center;
    padding: 40px;
    opacity: 0;
    animation: fadeIn 0.3s ease-in 0.2s forwards; /* Fade in nach 200ms */
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--community-border);
    border-top-color: var(--community-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 15px auto;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-spinner p {
    color: var(--community-text-secondary);
    margin: 0;
}

.feed-post {
    background: var(--community-container);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.feed-post.highlighted {
    animation: highlightPost 3s ease;
    border: 2px solid var(--community-primary);
    box-shadow: 0 0 20px rgba(0, 168, 132, 0.4);
}

@keyframes highlightPost {
    0% {
        background: rgba(0, 168, 132, 0.15);
        transform: scale(1.02);
    }
    50% {
        background: rgba(0, 168, 132, 0.1);
    }
    100% {
        background: var(--community-container);
        transform: scale(1);
    }
}

.feed-post-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    position: relative;
}

.feed-post-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.feed-post-avatar-link {
    display: block;
    flex-shrink: 0;
}

.feed-post-user-info {
    flex: 1;
}

.feed-post-user-link {
    text-decoration: none !important;
}

.feed-post-user-link:hover h4 {
    color: var(--community-primary);
}

.feed-post-user-info h4 {
    margin: 0 0 3px 0;
    font-size: 16px;
    color: var(--community-text);
    transition: color 0.3s ease;
}

.feed-post-time {
    font-size: 13px;
    color: var(--community-text-secondary);
}

/* Blog Post Styles */
.feed-post.blog-post {
    border-left: 3px solid var(--community-primary);
}

.blog-post-title {
    margin: 0 0 15px 0;
    font-size: 20px;
    color: var(--community-text);
    font-weight: 600;
}

.blog-post-content {
    color: var(--community-text);
    line-height: 1.6;
}

.blog-post-content p {
    margin: 0 0 15px 0;
}

.blog-post-content h1,
.blog-post-content h2,
.blog-post-content h3,
.blog-post-content h4,
.blog-post-content h5,
.blog-post-content h6 {
    color: var(--community-text);
    margin: 20px 0 10px 0;
}

.blog-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 15px 0;
}

.blog-post-content a {
    color: var(--community-primary);
    text-decoration: underline;
}

.blog-post-content a:hover {
    color: var(--community-primary-hover);
}

.btn-delete-post {
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    border-radius: 50%;
    color: var(--community-text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-delete-post:hover {
    background: rgba(239, 68, 68, 0.1);
    color: var(--community-danger);
}

.feed-post-content p {
    margin: 0 0 15px 0;
    color: var(--community-text);
    line-height: 1.6;
    white-space: pre-wrap;
}

.feed-post-image {
    margin-top: 15px;
    border-radius: 8px;
    overflow: hidden;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.feed-post-image img {
    width: 100%;
    height: auto;
    display: block;
}

.feed-post-actions {
    display: flex !important;
    gap: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--community-border);
}

.btn-like-post,
.btn-comment-post {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: var(--community-text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-like-post:hover,
.btn-comment-post:hover {
    background: rgba(0, 168, 132, 0.1);
    color: var(--community-primary);
}

.btn-like-post.liked {
    color: var(--community-primary);
    background: rgba(0, 168, 132, 0.1);
}

.btn-like-post.liked svg {
    fill: var(--community-primary);
    stroke: var(--community-primary);
}

.btn-like-post svg,
.btn-comment-post svg {
    stroke: currentColor;
    transition: fill 0.3s ease;
}

/* Comments */
.feed-post-comments {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--community-border);
}

.comments-list {
    margin-bottom: 15px;
    max-height: 400px;
    overflow-y: auto;
}

.comment-item {
    margin-bottom: 16px;
    padding: 12px;
    background: var(--community-input);
    border-radius: 8px;
    display: flex;
    gap: 12px;
}

.comment-avatar-link {
    flex-shrink: 0;
}

.comment-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-content {
    flex: 1;
    overflow: hidden;
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.comment-author {
    color: var(--community-primary);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
}

.comment-author:hover {
    text-decoration: underline !important;
}

.comment-time {
    color: var(--community-text-secondary);
    font-size: 12px;
}

.comment-content p {
    color: var(--community-text);
    font-size: 14px;
    line-height: 1.5;
    word-wrap: break-word;
    margin: 0;
}

.btn-reply-comment {
    background: none;
    border: none;
    color: var(--community-text-secondary);
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    padding: 5px 0;
    margin-top: 5px;
    transition: color 0.2s ease;
}

.btn-reply-comment:hover {
    color: var(--community-primary);
}

.btn-reply-comment svg {
    width: 14px;
    height: 14px;
}

.comment-content-wrapper {
    flex: 1;
}

.comment-replies {
    margin-top: 15px;
    padding-left: 40px;
    border-left: 2px solid var(--community-border);
}

.comment-reply {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.comment-reply:last-child {
    margin-bottom: 0;
}

.comment-reply .comment-avatar {
    width: 32px;
    height: 32px;
}

.inline-reply-form {
    margin-top: 10px;
    padding: 15px;
    background: var(--community-input);
    border-radius: 10px;
    border: 1px solid var(--community-border);
}

.reply-comment-input {
    width: 100%;
    min-height: 60px;
    padding: 10px;
    background: var(--community-bg);
    border: 1px solid var(--community-border);
    border-radius: 8px;
    color: var(--community-text);
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
    margin-bottom: 10px;
}

.reply-comment-input:focus {
    outline: none;
    border-color: var(--community-primary);
}

.reply-comment-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.btn-cancel-reply,
.btn-submit-reply {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-cancel-reply {
    background: #dc3545;
    color: white;
}

.btn-cancel-reply:hover {
    background: #c82333;
}

.btn-submit-reply {
    background: var(--community-primary);
    color: white;
}

.btn-submit-reply:hover {
    background: var(--community-primary-hover);
}

.btn-cancel-reply svg,
.btn-submit-reply svg {
    width: 14px;
    height: 14px;
}

.no-comments {
    text-align: center;
    padding: 20px;
    color: var(--community-text-secondary);
    font-size: 14px;
}

.comment-input-wrapper {
    width: 100%;
}

.comment-form {
    display: flex;
    gap: 10px;
    align-items: flex-end;
    width: 100%;
}

.comment-input {
    flex: 1;
    min-height: 40px;
    max-height: 120px;
    padding: 10px 15px;
    background: var(--community-input);
    border: 1px solid var(--community-border);
    border-radius: 20px;
    color: var(--community-text);
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
    transition: border-color 0.2s ease;
}

.comment-input:focus {
    outline: none;
    border-color: var(--community-primary);
}

.comment-input::placeholder {
    color: var(--community-text-secondary);
}

.btn-submit-comment {
    padding: 10px 20px;
    background: var(--community-primary);
    color: white;
    border: none;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s ease;
    white-space: nowrap;
}

.btn-submit-comment:hover {
    background: var(--community-primary-hover);
}

.btn-submit-comment:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Load More */
.feed-load-more-container {
    text-align: center;
    padding: 30px 0;
}

.btn-load-more {
    padding: 12px 30px;
    background: var(--community-primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-load-more:hover {
    background: var(--community-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 168, 132, 0.3);
}

/* ================================================
   NOTIFICATIONS SYSTEM
   ================================================ */

#peteitcms-stream-notifications-wrapper {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.stream-notifications-trigger {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.stream-notifications-trigger:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.stream-notifications-trigger svg {
    width: 24px;
    height: 24px;
    color: #333;
}

.stream-notifications-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4444;
    color: white;
    border-radius: 10px;
    padding: 2px 6px;
    font-size: 11px;
    font-weight: bold;
    min-width: 18px;
    text-align: center;
}

.stream-notifications-modal {
    position: absolute;
    top: 80px;
    right: 0;
    width: 400px;
    max-height: 600px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.stream-notifications-header {
    background: linear-gradient(135deg, var(--community-primary), var(--community-primary-hover));
    color: white;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.stream-notifications-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.btn-stream-mark-all-read {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-stream-mark-all-read:hover {
    background: rgba(255, 255, 255, 0.3);
}

.btn-close-stream-modal {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stream-notifications-list {
    max-height: 500px;
    overflow-y: auto;
}

.notification-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.notification-item:hover {
    background: #f5f5f5;
    transform: translateX(5px);
}

.notification-item.unread {
    background: #e3f2fd;
}

.notification-item.unread:hover {
    background: #d0e9f8;
}

.notification-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 12px;
    object-fit: cover;
    border: 2px solid #ddd;
}

.notification-content {
    flex: 1;
}

.notification-actor {
    font-weight: 600;
    font-size: 14px;
    color: #333;
    margin-bottom: 3px;
}

.notification-message {
    font-size: 13px;
    color: #666;
    margin-bottom: 3px;
}

.notification-preview {
    font-size: 12px;
    color: #888;
    font-style: italic;
    margin-top: 5px;
    padding: 5px 10px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 5px;
    border-left: 3px solid var(--community-primary);
}

.notification-time {
    font-size: 11px;
    color: #999;
}

.notification-unread-dot {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: var(--community-primary);
    border-radius: 50%;
}

.notifications-empty {
    padding: 40px 20px;
    text-align: center;
    color: #999;
}

.notifications-empty svg {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    opacity: 0.3;
}

.notifications-empty p {
    margin: 0;
    font-size: 14px;
}

.loading-spinner {
    padding: 40px 20px;
    text-align: center;
}

.loading-spinner .spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--community-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-spinner p {
    margin: 0;
    font-size: 14px;
    color: #999;
}

/* Image Lightbox */
.peteitcms-image-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    animation: zoomIn 0.3s ease;
}

.lightbox-image-wrapper {
    max-width: 90vw;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: zoom-in;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.lightbox-image[data-zoom]:not([data-zoom="1"]) {
    cursor: zoom-out;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: transparent;
    border: none;
    color: white;
    font-size: 40px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.lightbox-close:hover {
    transform: scale(1.2);
}

.lightbox-controls {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px;
    border-radius: 8px;
}

.lightbox-controls button {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-controls button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.8); }
    to { transform: scale(1); }
}

/* Responsive */
@media (max-width: 768px) {
    #peteitcms-stream-notifications-wrapper {
        top: 10px;
        right: 10px;
    }
    
    .stream-notifications-modal {
        width: calc(100vw - 20px);
        max-width: 400px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .peteitcms-stream-container {
        padding: 20px 15px;
    }
    
    .feed-create-post {
        flex-direction: column;
    }
    
    .create-post-avatar {
        margin: 0 auto;
    }
}
