.code-actions-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin: 8px 0 16px 0;
}
.fullscreen-btn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background: var(--vscode-btn-bg);
    color: var(--vscode-accent);
    border: none;
    border-radius: var(--vscode-radius);
    padding: 6px 10px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.2s, color 0.2s;
    box-shadow: var(--vscode-shadow);
}
.fullscreen-btn:hover {
    background: var(--vscode-accent);
    color: #fff;
}
.fullscreen-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(30,30,30,0.98);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fullscreen-modal-content {
    background: var(--vscode-panel);
    border-radius: var(--vscode-radius);
    box-shadow: var(--vscode-shadow);
    padding: 32px 24px 24px 24px;
    min-width: 320px;
    max-width: 90vw;
    width: 75vw;
    max-height: 75vh;
    display: flex;
    flex-direction: column;
    position: relative;
}
.fullscreen-close {
    position: absolute;
    top: 12px;
    right: 18px;
    background: transparent;
    color: var(--vscode-accent);
    border: none;
    font-size: 2rem;
    cursor: pointer;
    z-index: 2;
    transition: color 0.2s;
}
.fullscreen-close:hover {
    color: #fff;
}
.fullscreen-modal pre {
    background: #181c24;
    color: var(--vscode-text);
    border-radius: var(--vscode-radius);
    padding: 18px;
    margin: 0;
    overflow: auto;
    font-family: var(--vscode-font);
    font-size: 1.1rem;
    border: 1px solid var(--vscode-border);
    box-shadow: var(--vscode-shadow);
    flex: 1;
    min-height: 300px;
    max-height: 60vh;
}
.modal-copy-btn {
    position: absolute;
    top: 12px;
    right: 56px;
    z-index: 2;
}
/* View Page Specific Styles */
.container {
    max-width: none;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100vw;
    overflow: hidden;
}
.env-row.env-row-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 200px;
    gap: 0;
    margin-top: 0;
    height: 100%;
    min-width: 0;
}
.env-col.code-col {
    display: flex;
    flex-direction: column;
    background: var(--vscode-panel);
    border-radius: 0;
    box-shadow: none;
    padding: 18px 8px 18px 16px;
    min-width: 0;
    border-right: 1px solid var(--vscode-border);
    overflow: auto;
}
.env-col.code-col:last-of-type {
    border-right: none;
}
.env-col.thumb-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: var(--vscode-panel);
    border-radius: 0;
    box-shadow: none;
    padding: 18px 8px 18px 8px;
    min-width: 0;
    width: 200px;
    border-left: 1px solid var(--vscode-border);
    overflow-y: auto;
}
.code-title {
    margin-bottom: 0;
    font-size: 1rem;
    color: var(--vscode-heading);
    font-weight: 600;
    font-family: var(--vscode-font);
    background: var(--vscode-bg);
    padding: 8px 12px;
    border-bottom: 1px solid var(--vscode-border);
    position: sticky;
    top: 0;
    z-index: 1;
}
.code-box {
    background: #181c24;
    color: var(--vscode-text);
    border-radius: 0;
    padding: 12px;
    margin-bottom: 0;
    overflow-x: auto;
    overflow-y: auto;
    font-family: var(--vscode-font);
    font-size: 1rem;
    border: none;
    box-shadow: none;
    flex: 1;
    min-width: 0;
}
.gallery.gallery-vertical {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
    padding: 0 4px;
}
.thumb-img {
    width: 100px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--vscode-radius);
    cursor: pointer;
    box-shadow: var(--vscode-shadow);
    transition: transform 0.2s;
    margin-bottom: 6px;
}
.thumb-img:hover {
    transform: scale(1.07);
}
.copy-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: var(--vscode-btn-bg);
    color: var(--vscode-accent);
    border: none;
    border-radius: var(--vscode-radius);
    padding: 6px 10px;
    margin: 8px 0 16px 0;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.2s, color 0.2s;
    box-shadow: var(--vscode-shadow);
    gap: 6px;
}
.copy-btn:hover, .copy-btn.copied {
    background: var(--vscode-accent);
    color: #fff;
}
@media (max-width: 900px) {
    .env-row.env-row-3 {
        display: flex;
        flex-direction: column;
        gap: 0;
        height: auto;
    }
    .env-col.code-col, .env-col.thumb-col {
        max-width: 100%;
        margin-bottom: 0;
        border-right: none;
        border-left: none;
        border-bottom: 1px solid var(--vscode-border);
    }
    .env-col.thumb-col {
        border-bottom: none;
    }
}
