/* Spiritgram - Tron-Inspired Theme */

/* CSS Variables (customizable) */
:root {
    --accent-color: #00d9ff;
    --secondary-color: #ff00d9;
    --bg-dark: #0a0e1a;
    --bg-darker: #050810;
    --text-light: #e0e8ff;
    --text-muted: #8892b0;
    --border-color: #1a2332;
    --glow-intensity: 0 0 10px currentColor, 0 0 20px currentColor;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-darker);
    color: var(--text-light);
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

/* Animated Cyber Grid Background */
.cyber-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 217, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 217, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    animation: gridScroll 20s linear infinite;
}

@keyframes gridScroll {
    0% { transform: translateY(0); }
    100% { transform: translateY(50px); }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    border-bottom: 2px solid var(--accent-color);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
    padding: 2rem 0;
    margin-bottom: 3rem;
}

.site-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
    text-shadow: var(--glow-intensity);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.site-description {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* Navigation */
.main-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--accent-color);
    border-radius: 3px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link:hover,
.nav-link.active {
    background-color: var(--accent-color);
    color: var(--bg-darker);
    box-shadow: 0 0 15px var(--accent-color);
    transform: translateY(-2px);
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.nav-link:hover::before {
    left: 100%;
}

/* Gallery Grid */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.gallery-item {
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.8) 0%, rgba(10, 14, 26, 0.9) 100%);
    border: 1px solid var(--accent-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.2);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.5);
    border-color: var(--secondary-color);
}

.item-content img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.video-embed {
    position: relative;
    width: 100%;
    min-height: 300px;
    background-color: var(--bg-dark);
}

.video-embed iframe,
.video-embed blockquote {
    width: 100%;
    min-height: 300px;
}

.item-info {
    padding: 1.5rem;
}

.item-name {
    color: var(--accent-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

.item-dates {
    color: var(--secondary-color);
    font-style: italic;
    margin-bottom: 0.75rem;
}

.item-message {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.item-meta {
    color: var(--text-muted);
    font-size: 0.9rem;
    border-top: 1px solid var(--border-color);
    padding-top: 0.75rem;
}

/* Forms */
.form-container,
.login-container,
.settings-container,
.users-container {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.8) 0%, rgba(10, 14, 26, 0.9) 100%);
    padding: 2rem;
    border: 1px solid var(--accent-color);
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
}

.users-container {
    max-width: 1000px;
}

h2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

h3 {
    color: var(--secondary-color);
    margin: 1.5rem 0 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-weight: 500;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="url"],
textarea,
select {
    width: 100%;
    padding: 0.75rem;
    background-color: rgba(10, 14, 26, 0.8);
    border: 1px solid var(--accent-color);
    border-radius: 4px;
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="url"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 10px rgba(255, 0, 217, 0.3);
}

input[type="file"] {
    color: var(--text-light);
}

small {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Color Picker */
.color-picker-group {
    display: flex;
    gap: 1rem;
    align-items: center;
}

input[type="color"] {
    width: 60px;
    height: 40px;
    border: 1px solid var(--accent-color);
    border-radius: 4px;
    cursor: pointer;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid var(--accent-color);
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.btn:hover {
    background-color: var(--accent-color);
    color: var(--bg-darker);
    box-shadow: 0 0 15px var(--accent-color);
    transform: translateY(-2px);
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--bg-darker);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    box-shadow: 0 0 15px var(--secondary-color);
}

.btn-success {
    background-color: #00ff88;
    color: var(--bg-darker);
    border-color: #00ff88;
}

.btn-success:hover {
    box-shadow: 0 0 15px #00ff88;
}

.btn-danger {
    background-color: #ff0066;
    color: var(--text-light);
    border-color: #ff0066;
}

.btn-danger:hover {
    box-shadow: 0 0 15px #ff0066;
}

.btn-small {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
}

/* Alerts */
.alert {
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
    border-left: 4px solid;
}

.alert-success {
    background-color: rgba(0, 255, 136, 0.1);
    border-color: #00ff88;
    color: #00ff88;
}

.alert-error {
    background-color: rgba(255, 0, 102, 0.1);
    border-color: #ff0066;
    color: #ff0066;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.page-link {
    padding: 0.5rem 1rem;
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid var(--accent-color);
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-link:hover,
.page-link.active {
    background-color: var(--accent-color);
    color: var(--bg-darker);
    box-shadow: 0 0 10px var(--accent-color);
}

/* Dashboard */
.dashboard {
    max-width: 800px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat-card {
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.8) 0%, rgba(10, 14, 26, 0.9) 100%);
    padding: 2rem;
    border: 1px solid var(--accent-color);
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.2);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(0, 217, 255, 0.4);
}

.stat-number {
    font-size: 3rem;
    color: var(--accent-color);
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.6);
    font-weight: bold;
}

.stat-label {
    color: var(--text-muted);
    margin-top: 0.5rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.stat-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.stat-link:hover {
    color: var(--accent-color);
    text-shadow: 0 0 10px var(--accent-color);
}

.quick-actions {
    margin-top: 2rem;
}

/* Moderation */
.moderation-grid {
    display: grid;
    gap: 2rem;
}

.moderation-item {
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.8) 0%, rgba(10, 14, 26, 0.9) 100%);
    border: 1px solid var(--accent-color);
    border-radius: 8px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 2fr auto;
    gap: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.2);
    transition: all 0.3s ease;
}

.moderation-item.editing {
    border-color: var(--secondary-color);
    box-shadow: 0 0 25px rgba(255, 0, 217, 0.4);
    grid-template-columns: 300px 1fr;
}

.item-preview img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
}

.moderation-item.editing .item-preview img {
    width: 100%;
    height: auto;
    max-height: 400px;
}

.thought-preview {
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid var(--accent-color);
    border-radius: 4px;
    padding: 1rem;
    font-style: italic;
}

.item-details h3 {
    margin-top: 0;
    color: var(--accent-color);
}

.item-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
}

/* Edit Form in Moderation */
.item-edit-form {
    width: 100%;
}

.item-edit-form h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(255, 0, 217, 0.5);
}

.item-edit-form .form-group {
    margin-bottom: 1rem;
}

.item-edit-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.item-edit-form input,
.item-edit-form textarea {
    width: 100%;
    padding: 0.75rem;
    background-color: rgba(10, 14, 26, 0.8);
    border: 1px solid var(--accent-color);
    border-radius: 4px;
    color: var(--text-light);
    font-size: 1rem;
}

.item-edit-form input:focus,
.item-edit-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 10px rgba(255, 0, 217, 0.3);
}

.edit-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

/* Users Table */
.users-table {
    overflow-x: auto;
    margin-top: 2rem;
}

table {
    width: 100%;
    border-collapse: collapse;
}

thead {
    background: rgba(0, 217, 255, 0.1);
}

th {
    padding: 1rem;
    text-align: left;
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
}

td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

tr:hover {
    background: rgba(0, 217, 255, 0.05);
}

td.actions {
    white-space: nowrap;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.95) 0%, rgba(10, 14, 26, 0.95) 100%);
    margin: 10% auto;
    padding: 2rem;
    border: 1px solid var(--accent-color);
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.5);
}

/* Footer */
.site-footer {
    margin-top: 4rem;
    padding: 2rem 0;
    border-top: 2px solid var(--accent-color);
    text-align: center;
    color: var(--text-muted);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.2);
}

.site-footer a {
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.site-footer a:hover {
    color: var(--secondary-color);
    text-shadow: 0 0 10px var(--secondary-color);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem;
    color: var(--text-muted);
}

.empty-state a {
    color: var(--accent-color);
    text-decoration: none;
}

.empty-state a:hover {
    color: var(--secondary-color);
}

.login-hint {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(0, 217, 255, 0.05);
    border: 1px solid var(--accent-color);
    border-radius: 4px;
    text-align: center;
}

/* Captcha */
.captcha-group {
    background: rgba(0, 217, 255, 0.05);
    padding: 1rem;
    border: 1px solid var(--accent-color);
    border-radius: 4px;
}

/* Responsive */
@media (max-width: 768px) {
    .site-title {
        font-size: 2rem;
    }

    .gallery {
        grid-template-columns: 1fr;
    }

    .moderation-item {
        grid-template-columns: 1fr;
    }

    .moderation-item.editing {
        grid-template-columns: 1fr;
    }

    .item-preview img,
    .thought-preview {
        width: 100%;
        height: auto;
        min-height: 200px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    table {
        font-size: 0.9rem;
    }

    th, td {
        padding: 0.5rem;
    }

    .edit-actions {
        flex-direction: column;
    }

    .edit-actions .btn {
        width: 100%;
    }
}

/* Gallery Item Interaction */
.gallery-item {
    cursor: pointer;
    position: relative;
}

.gallery-item::after {
    content: 'Click to view';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 217, 255, 0.9);
    color: var(--bg-darker);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    font-weight: bold;
    z-index: 10;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Video Placeholder */
.video-embed-preview {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(255, 0, 217, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder {
    text-align: center;
    color: var(--accent-color);
}

.play-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px var(--accent-color);
}

/* Thought Preview Card */
.thought-preview-card {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.05) 0%, rgba(255, 0, 217, 0.05) 100%);
    border: 2px dashed var(--accent-color);
}

.thought-preview-card p {
    font-style: italic;
    color: var(--text-light);
    text-align: center;
    line-height: 1.8;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow-y: auto;
}

.lightbox-content {
    position: relative;
    max-width: 1400px;
    width: 100%;
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.95) 0%, rgba(10, 14, 26, 0.95) 100%);
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    box-shadow: 0 0 50px rgba(0, 217, 255, 0.5);
    animation: lightboxFadeIn 0.3s ease;
}

@keyframes lightboxFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-color);
    color: var(--bg-darker);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 0 15px var(--accent-color);
}

.lightbox-close:hover {
    background: var(--secondary-color);
    box-shadow: 0 0 25px var(--secondary-color);
    transform: rotate(90deg);
}

.lightbox-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
}

.lightbox-media {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    overflow: hidden;
    min-height: 400px;
}

.lightbox-media img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    display: block;
}

.lightbox-media iframe {
    width: 100%;
    min-height: 400px;
}

.thought-display {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    text-align: center;
}

.thought-display p {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-light);
    line-height: 2;
}

.lightbox-info {
    display: flex;
    flex-direction: column;
}

.lightbox-info h2 {
    color: var(--accent-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(0, 217, 255, 0.6);
}

.lightbox-dates {
    color: var(--secondary-color);
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.lightbox-message {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    flex-grow: 1;
}

.lightbox-meta {
    color: var(--text-muted);
    font-size: 0.9rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
}

.lightbox-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Item Detail View Page */
.item-detail-view {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.8) 0%, rgba(10, 14, 26, 0.9) 100%);
    border: 1px solid var(--accent-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.3);
}

.item-detail-content {
    background: rgba(0, 0, 0, 0.3);
}

.detail-image img {
    width: 100%;
    max-height: 600px;
    object-fit: contain;
    display: block;
    background: rgba(0, 0, 0, 0.5);
}

.detail-video {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-video iframe,
.detail-video blockquote {
    width: 100%;
    min-height: 500px;
}

.item-detail-info {
    padding: 2rem;
}

.detail-name {
    color: var(--accent-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(0, 217, 255, 0.6);
}

.detail-dates {
    color: var(--secondary-color);
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.detail-message {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.detail-meta {
    color: var(--text-muted);
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.share-section {
    background: rgba(0, 217, 255, 0.05);
    border: 1px solid var(--accent-color);
    border-radius: 4px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.share-section h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.share-url-container {
    display: flex;
    gap: 1rem;
}

.share-url-container input {
    flex: 1;
}

.back-link {
    margin-top: 2rem;
}

/* Responsive Lightbox */
@media (max-width: 968px) {
    .lightbox {
        padding: 1rem;
        align-items: flex-start;
    }

    .lightbox-content {
        margin-top: 2rem;
        max-height: calc(100vh - 4rem);
        overflow-y: auto;
    }

    .lightbox-body {
        grid-template-columns: 1fr;
        padding: 1rem;
        gap: 1rem;
    }

    .lightbox-media {
        min-height: 250px;
        max-height: 50vh;
    }

    .lightbox-media img {
        max-height: 50vh;
    }

    .lightbox-media iframe {
        min-height: 300px;
        height: 50vh;
    }

    .lightbox-close {
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
        top: 0.5rem;
        right: 0.5rem;
    }

    .lightbox-info h2 {
        font-size: 1.5rem;
    }

    .lightbox-actions {
        flex-direction: column;
    }

    .lightbox-actions .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .gallery-item::after {
        content: '';
        opacity: 0;
    }

    .share-url-container {
        flex-direction: column;
    }

    .detail-name {
        font-size: 2rem;
    }

    .lightbox {
        padding: 0.5rem;
    }

    .lightbox-content {
        border-radius: 4px;
        max-height: calc(100vh - 2rem);
    }

    .lightbox-body {
        padding: 0.75rem;
        gap: 0.75rem;
    }

    .lightbox-info h2 {
        font-size: 1.3rem;
    }

    .lightbox-dates {
        font-size: 1rem;
    }

    .lightbox-message {
        font-size: 0.95rem;
    }

    .thought-display p {
        font-size: 1.1rem;
        padding: 1.5rem;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .lightbox {
        padding: 0;
    }

    .lightbox-content {
        border-radius: 0;
        max-height: 100vh;
        width: 100%;
        height: 100%;
    }

    .lightbox-body {
        padding: 0.5rem;
        gap: 0.5rem;
    }

    .lightbox-close {
        width: 30px;
        height: 30px;
        font-size: 1.25rem;
    }

    .lightbox-info h2 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .lightbox-dates {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .lightbox-message {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .lightbox-meta {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }

    .lightbox-media iframe {
        min-height: 250px;
        height: 40vh;
    }

    .thought-display {
        padding: 1rem;
    }

    .thought-display p {
        font-size: 1rem;
    }

    .lightbox-actions .btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}
