<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.grid-item {
    cursor: pointer;
    transition: transform 0.2s;
    border-radius: 5px;
    overflow: hidden;
    aspect-ratio: 1/0.93;
    border: 1px solid #00000045;
    box-shadow: #00000024 0px 0px 10px;
    background: white;
}

.sh-post-image-wrapper {
    width: 100%;
    height: 100%;
}

.sh-post-image-wrapper img,
.sh-post-image-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sh-post-image {
    width: 90%;
    aspect-ratio: 1/0.93;
    border-radius: 5px;
}

.post-content {
    margin-left: 5px;
    display: inline;
}

.post-author {
    font-weight: bold;
    display: inline-block;
}

.author-posts-grid {
    display: grid;
    gap: 2em;
    margin: 2em 0;
}

.author-posts-grid.columns-2 { grid-template-columns: repeat(2, 1fr); }
.author-posts-grid.columns-3 { grid-template-columns: repeat(3, 1fr); }
.author-posts-grid.columns-4 { grid-template-columns: repeat(4, 1fr); }

.grid-item:hover {
    transform: translateY(-5px);
}

.author-posts-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 999999;
}

.modal-image-wrapper {
    text-align: center;
}

.close-modal {
    position: absolute;
    right: 10px;
    top: 5px;
    font-size: 30px;
    cursor: pointer;
    z-index: 100;
    font-weight: 600;
    color: white;
    filter: drop-shadow(0px 0px 5px black);
}

@media (max-width: 980px) {
    .author-posts-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }

    .sh-image-content {
        max-width: 90vw !important;
    }
}

@media (max-width: 768px) {
    .author-posts-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0px;
        margin: 0;
    }

    .grid-item {
        border-radius: 0px;
        border: none;
        box-shadow: none;
    }

    .grid-item:hover {
        transform: translateY(0px);
        opacity: 90%;
    }

    .sh-image-content {
        max-width: 100vw !important;
        margin: 0px auto !important;
    }

    .sh-video-content {
        margin: 0px auto !important;
        max-width: 100vw !important;
    }

    .sh-video-post-text {
        max-width: 100vw !important;
    }
}

.modal-slider {
    position: relative;
    width: 100%;
    margin-bottom: 0px;
}

.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    touch-action: pan-y pinch-zoom;
    user-select: none;
    border-radius: 0px;
    aspect-ratio: 1/0.93;
    max-width: 70vh;
    max-height: 70vh;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    display: none;
}

.slide.active {
    opacity: 1;
    display: block;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border-radius: 3px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    z-index: 10;
    transition: background 0.3s ease;
    padding-bottom: 5px;
}

.slider-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}

/* Rest of your existing modal styles */
.author-posts-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 999999;
}

.slide-counter {
    display: none;
}

.fea-uploads-sort {
    display: none !important;
}

.modal-actions .delete-post {
    background-color: #00000094;
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin: 10px 0;
}

.modal-actions .delete-post:hover {
    background-color: #6b101994;
}

.modal-actions .modal-button {
    background-color: #00000094;
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin: 10px 0;
}

.modal-actions .modal-button:hover {
    background-color: #008ad194;
}

.sh-author-btn .modal-button {
    background-color: #008ad1;
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin: 10px 0;
}

.sh-author-btn .modal-button:hover {
    background-color: #006293;
}

.grid-item.loading {
    opacity: 0.7;
    pointer-events: none;
}

.no-posts-message {
    text-align: center;
    padding-top: 50px;
}

.no-posts-message h2,p {
    color: #959595 !important;
}

.no-post-btn {
    color: white;
    background: #008ad1;
    width: 300px;
    margin: 10px auto;
    border-radius: 3px;
    padding: 10px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    display: block;
}

.no-post-btn:hover {
    background: #01689b;
}

.new-video-btn {
    background: linear-gradient(45deg, #2570d3, #385887);
}

.new-video-btn:hover {
    background: linear-gradient(45deg, #1e56a0, #293d5a);
}

.modal-actions {
    position: absolute;
    bottom: 0px;
    left: 10px;
}

.sh-post-text {
    padding: 10px 15px;
    line-height: 21px;
    max-height: 200px;
    overflow: scroll;
}

.sh-post-tags {
    display: inline;
}

.sh-image-content {
    position: relative;
    width: 70vh;
    max-width: 40vw;
    margin: 30px auto 0px auto;
    background: #fff;
    padding: 0px;
    border-radius: 3px;
    max-height: 90vh;
    overflow-y: auto;
}

/* Video styling */

.sh-video-content {
    height: 90vh;
    width: 50.625vh;
    margin: 20px auto 0px auto;
    border-radius: 3px;
    overflow: hidden;
    max-width: 1080px;
    max-height: 1920px;
}

.sh-video-wrapper {
    height: 100%;
    position: relative;
}

.sh-video-player {
    height: 100%;
    object-fit: cover;
}

.sh-video-post-text {
    color: white;
}

.sh-video-post-text {
    position: absolute;
    bottom: 0px;
    padding: 10px;
    width: 50.625vh;
    height: 100px;
    max-height: fit-content;
    line-height: 21px;
    overflow: hidden;
    background: linear-gradient(0deg, black, transparent);
}

.sh-more-arrow {
    position: absolute;
    top: 0px;
    color: white;
    font-size: 30px;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
}

.sh-video-full-text .sh-more-arrow {
    transform: translateX(-100%) rotate(-90deg);
}

.modal-video-actions .delete-post {
    background-color: #00000094;
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin: 10px 0;
}

.modal-video-actions .delete-post:hover {
    background-color: #6b101994;
}

.modal-video-actions .modal-button {
    background-color: #00000094;
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin: 10px 0;
}

.modal-video-actions .modal-button:hover {
    background-color: #008ad194;
}

.sh-video-full-text {
    height: 100%;
    overflow: scroll;
    padding-bottom: 20px;
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.7049413515406162) 50%, rgba(0,0,0,0) 100%);
}

.modal-content {
    margin: 0 auto;
    width: fit-content;
}

/* Video controls */

.sh-video-wrapper {
    position: relative;
}

.sh-video-controls {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none; /* Let clicks pass through to video */
}

.sh-play-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    position: relative;
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
}

.sh-play-icon.show {
    opacity: 1;
}

.sh-play-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    border-left: 20px solid white;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}

.sh-mute-btn {
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: white;
    padding: 8px;
    border-radius: 3px;
    cursor: pointer;
    pointer-events: auto; /* Make button clickable */
    z-index: 2;
    opacity: 80%;
    float: right;
    margin-top: 10px;
}

.sh-video-player {
    cursor: pointer;
}

.posts-loader {
    text-align: center;
    padding: 20px;
    margin: 20px 0;
}

.no-more-posts {
    text-align: center;
    padding: 20px;
    margin: 20px 0;
    color: #666;
    font-style: italic;
}

.post-time {
    font-size: 14px;
    color: grey;
}

.post-title {
    color: white;
    text-align: center;
    padding-top: 3px;
    font-size: 14px;
}</pre></body></html>