/* ============================================================================
   TRAJECTORY BUILDER
   Trajectory builder, tool selection, parameter forms, results
   ============================================================================ */

/* ============================================
   TRAJECTORY BUILDER STYLES - 2 COLUMN LAYOUT
   ============================================ */

.mcp-builder-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Trajectory Panel (Left) */
.mcp-trajectory-panel {
    background: #1e293b;
    border-radius: 8px;
    padding: 16px;
}

.trajectory-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.trajectory-header h3 {
    margin: 0;
    font-size: 1rem;
    color: #e2e8f0;
}

.trajectory-count {
    font-size: 0.8rem;
    color: #64748b;
}

/* Context Pagination */
.context-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 12px;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #1e3a5f 0%, #1e293b 100%);
    border: 1px solid #475569;
    border-radius: 8px;
}

.context-pagination .btn {
    min-width: 80px;
}

.context-pagination .btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.context-page-info {
    font-size: 0.9rem;
    color: #94a3b8;
    font-weight: 500;
}

.context-page-input {
    width: 48px;
    padding: 4px 6px;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    color: #e2e8f0;
    background: #0f172a;
    border: 1px solid #475569;
    border-radius: 4px;
    -moz-appearance: textfield;
}

.context-page-input::-webkit-outer-spin-button,
.context-page-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.context-page-input:focus {
    outline: none;
    border-color: #60a5fa;
}

.trajectory-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 12px;
}

.trajectory-actions .btn-sm {
    font-size: 0.75rem;
    padding: 6px 10px;
}

.memory-checkbox-label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    color: #94a3b8;
    cursor: pointer;
    padding: 6px 8px;
    border-radius: 4px;
}

.memory-checkbox-label:hover {
    background: rgba(255, 255, 255, 0.05);
}

.memory-checkbox-label input[type="checkbox"] {
    cursor: pointer;
}

.load-from-run-dropdown {
    font-size: 0.75rem;
    padding: 6px 8px;
    border: 1px solid #334155;
    border-radius: 4px;
    background: #1e293b;
    color: #e2e8f0;
    cursor: pointer;
    max-width: 150px;
}

.load-from-run-dropdown:hover {
    border-color: #475569;
}

.load-from-run-dropdown:focus {
    outline: none;
    border-color: #3b82f6;
}

.trajectory-collapse-btns {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-left: auto;
}

.trajectory-collapse-btns .btn-xs {
    font-size: 0.65rem;
    padding: 3px 6px;
}

/* Trajectory Cards Container */
.trajectory-cards {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
    padding: 28px 8px 16px 32px;
}

/* Individual Trajectory Card */
.traj-card {
    background: #0f172a;
    border: 1px solid #475569;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.2s;
    position: relative;
}

.traj-card:hover {
    border-color: #64748b;
}

.traj-card.selected {
    border-color: #3b82f6;
    box-shadow: 0 0 0 1px #3b82f6;
}

.traj-card:not(.traj-card-empty) {
    cursor: pointer;
}

/* Empty card (waiting for tool selection) */
.traj-card-empty {
    cursor: pointer;
    border-style: dashed;
    background: transparent;
}

.traj-card-empty .traj-card-header {
    background: transparent;
    border-bottom: none;
}

.traj-card-tool-empty {
    color: #64748b;
    font-style: italic;
    font-weight: 400;
}

/* System prompt card */
.traj-card-system-prompt {
    background: linear-gradient(135deg, #2d1f3d 0%, #1e293b 100%);
}

.traj-card-system-prompt .traj-card-header {
    background: rgba(139, 92, 246, 0.15);
}

/* Prompt card (task description at start) */
.traj-card-prompt {
    background: linear-gradient(135deg, #1e3a3a 0%, #1e293b 100%);
}

.traj-card-prompt .traj-card-header {
    background: rgba(20, 184, 166, 0.15);
}

/* Follow-up prompt card (user instruction via Prompt Model) */
.traj-card-follow-up {
    background: linear-gradient(135deg, #1e3a3a 0%, #1e293b 100%);
}

.traj-card-follow-up .traj-card-header {
    background: rgba(20, 184, 166, 0.15);
}

.traj-prompt-content {
    padding: 8px;
}

.traj-prompt-text {
    margin: 0;
    padding: 8px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    color: #e2e8f0;
    font-size: 0.85rem;
    line-height: 1.4;
    white-space: pre-wrap;
    font-family: inherit;
}

/* Text-only card (annotations) */
.traj-card-text {
    background: linear-gradient(135deg, #1e3a5f 0%, #1e293b 100%);
}

.traj-card-text .traj-card-header {
    background: rgba(59, 130, 246, 0.15);
}

.traj-text-content {
    padding: 8px;
}

.traj-text-input {
    width: 100%;
    min-height: 40px;
    padding: 8px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 4px;
    color: #e2e8f0;
    font-size: 0.9rem;
    line-height: 1.5;
    resize: none;
    overflow: hidden;
    font-family: inherit;
}

.traj-text-input:focus {
    outline: none;
    border-color: #3b82f6;
    background: rgba(0, 0, 0, 0.3);
}

.traj-text-input::placeholder {
    color: #64748b;
}

.traj-text-display {
    margin: 0;
    padding: 8px;
    background: transparent;
    color: #e2e8f0;
    font-family: inherit;
    font-size: 0.9rem;
    line-height: 1.5;
    white-space: pre-wrap;
    word-wrap: break-word;
}

/* Context break card (page divider) */
.traj-card-context-break {
    background: linear-gradient(135deg, #7c3aed 0%, #4c1d95 100%);
    border: 2px dashed #a855f7;
    border-radius: 8px;
    padding: 8px 16px;
    margin: 16px 0;
}

.traj-context-break-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.context-break-icon {
    font-size: 1.2rem;
}

.context-break-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #e9d5ff;
}

.context-break-tokens {
    font-size: 0.75rem;
    color: #c4b5fd;
    background: rgba(0, 0, 0, 0.2);
    padding: 3px 8px;
    border-radius: 4px;
}

/* Error card styling */
.traj-card.is-error {
    background: rgba(220, 38, 38, 0.1);
}

.traj-card.is-error .traj-card-header {
    background: rgba(220, 38, 38, 0.15);
}

.traj-card.is-error .traj-card-tool::after {
    content: ' (error)';
    color: #f87171;
    font-weight: 400;
    font-size: 0.8rem;
}

/* Insert button - positioned to the left */
.traj-insert-btn {
    position: relative;
    height: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
    z-index: 10;
    /* Reset button defaults */
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    width: 100%;
}

.traj-insert-btn span {
    position: absolute;
    left: -28px;
    top: -10px;
    background: #334155;
    color: #64748b;
    font-size: 0.75rem;
    font-weight: 600;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.traj-insert-btn:hover span {
    background: #3b82f6;
    color: white;
}

/* First insert button when empty - center it */
.trajectory-cards > .traj-insert-btn:only-child span {
    position: static;
    margin: 0 auto;
}

/* Card Reasoning Section (thoughts/notes above tool call) */
.traj-reasoning-input {
    width: 100%;
    background: transparent;
    border: none;
    color: #cbd5e1;
    font-size: 0.9rem;
    line-height: 1.4;
    resize: none;
    min-height: 22px;
    font-family: inherit;
    overflow: hidden;
}

.traj-reasoning-input::placeholder {
    color: #64748b;
    font-style: italic;
}

.traj-reasoning-input:focus {
    outline: none;
}

/* Card Header */
.traj-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #1e293b;
    border-bottom: 1px solid #334155;
}

.traj-card-num {
    background: #334155;
    color: #94a3b8;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
    min-width: 24px;
    text-align: center;
}

.traj-card-icon {
    color: #64748b;
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 0.85rem;
}

.traj-card-tool {
    flex: 1;
    font-size: 0.9rem;
    font-weight: 600;
    color: #e2e8f0;
    font-family: 'Monaco', 'Courier New', monospace;
}

.traj-card-move-btns {
    display: flex;
    gap: 4px;
    margin-left: auto;
}

.traj-move-btn {
    background: #334155;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    font-size: 0.9rem;
    padding: 2px 6px;
    border-radius: 4px;
    line-height: 1;
    transition: background 0.2s, color 0.2s;
}

.traj-move-btn:hover:not(:disabled) {
    background: #3b82f6;
    color: white;
}

.traj-move-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.traj-card-delete {
    background: none;
    border: none;
    color: #64748b;
    cursor: pointer;
    font-size: 1.5rem;
    padding: 0;
    line-height: 1;
    transition: color 0.2s;
}

.traj-card-delete:hover {
    color: #ef4444;
}

/* Card Section (Params and Results) */
.traj-card-section {
    background: #0a0f1a;
    border-top: 1px solid #334155;
}

.traj-section-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    cursor: pointer;
    color: #94a3b8;
    font-size: 0.85rem;
    font-weight: 500;
}

.traj-section-header:hover {
    background: #1e293b;
}

.traj-section-toggle {
    font-size: 0.7rem;
    color: #64748b;
}

.traj-section-content {
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.traj-section-content.collapsed {
    display: none;
}

.traj-param {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.85rem;
}

.traj-param-key {
    color: #94a3b8;
    font-weight: 500;
}

.traj-param-value,
.traj-param-code {
    background: #0f172a;
    border: 1px solid #334155;
    border-radius: 6px;
    padding: 12px;
    margin: 0;
    font-size: 0.8rem;
    color: #60a5fa;
    font-family: 'Monaco', 'Courier New', monospace;
    white-space: pre-wrap;
    word-break: break-word;
    overflow-x: auto;
    line-height: 1.5;
}

/* System section (token budget info) */
.traj-system-section {
    border-top: 1px solid #334155;
}

.traj-system-section .traj-section-header {
    color: #94a3b8;
}

.traj-system-content {
    background: #0f172a;
    border: 1px solid #334155;
    border-radius: 6px;
    padding: 12px;
    margin: 0;
    font-size: 0.75rem;
    color: #94a3b8;
    font-family: 'Monaco', 'Courier New', monospace;
    white-space: pre-wrap;
    word-break: break-word;
    overflow-x: auto;
    line-height: 1.5;
}

/* Results JSON formatting */

.traj-results-json {
    background: #0f172a;
    border-radius: 6px;
    padding: 12px;
    margin: 0;
    font-size: 0.75rem;
    color: #94a3b8;
    white-space: pre-wrap;
    word-break: break-word;
    font-family: 'Monaco', 'Courier New', monospace;
    border: 1px solid #1e293b;
    max-height: 500px;
    overflow-y: auto;
}

/* Tool Panel (Right) */
.mcp-tool-panel {
    background: #1e293b;
    border-radius: 8px;
    padding: 16px;
    position: sticky;
    top: 120px;
    align-self: start;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
    scrollbar-gutter: stable;
}

.tool-panel-header h3 {
    margin: 0 0 12px 0;
    font-size: 1rem;
    color: #e2e8f0;
}

.tool-selector-section {
    margin-bottom: 16px;
}

.tool-params-section {
    flex: 1;
    overflow-y: auto;
}

/* Results Panel (Right) */
.mcp-results-panel {
    background: #1e293b;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.results-panel-header h3 {
    margin: 0 0 12px 0;
    font-size: 1rem;
    color: #e2e8f0;
}

.results-content {
    flex: 1;
    overflow-y: auto;
}

.results-json {
    background: #0f172a;
    border-radius: 6px;
    padding: 16px;
    margin: 0;
    font-size: 0.8rem;
    color: #94a3b8;
    white-space: pre-wrap;
    word-break: break-word;
    overflow-x: auto;
}

/* Tool Selector */
.mcp-tool-selector h3 {
    margin: 0 0 12px 0;
    font-size: 1rem;
    color: #e2e8f0;
}

.service-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.service-tab {
    padding: 6px 13px;
    font-size: 0.85rem;
    background: #334155;
    border: none;
    border-radius: 6px;
    color: #94a3b8;
    cursor: pointer;
    transition: all 0.2s;
}

.service-tab:hover {
    background: #475569;
    color: #e2e8f0;
}

.service-tab.active {
    background: #3b82f6;
    color: white;
}

/* Tool Buttons Grid */
.tool-buttons-divider {
    height: 1px;
    background: #475569;
    margin: 12px 0;
}

.tool-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tool-btn {
    padding: 6px 12px;
    background: #1e293b;
    border: 1px solid #475569;
    border-radius: 6px;
    color: #94a3b8;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s;
}

.tool-btn:hover {
    background: #334155;
    color: #e2e8f0;
    border-color: #64748b;
}

.tool-btn.active {
    background: #3b82f6;
    border-color: #3b82f6;
    color: white;
}

/* Parameter Form */
.mcp-params-container {
    flex: 1;
    background: #1e293b;
    border-radius: 8px;
    padding: 16px;
    overflow-y: auto;
}

.mcp-params-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tool-description {
    font-size: 0.85rem;
    color: #94a3b8;
    margin: 0 0 8px 0;
    padding-bottom: 12px;
    border-bottom: 1px solid #334155;
    white-space: pre-wrap;
    font-family: inherit;
}

.mcp-form-actions {
    display: flex;
    gap: 8px;
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid #334155;
}

.btn-primary {
    background: #3b82f6;
    color: white;
}

.btn-primary:hover {
    background: #2563eb;
}

.btn-primary:disabled {
    background: #64748b;
    cursor: not-allowed;
    opacity: 0.7;
}

.btn-danger {
    background: #ef4444;
    color: white;
}

.btn-danger:hover {
    background: #dc2626;
}

/* Placeholder and Loading States */
.mcp-placeholder {
    color: #64748b;
    font-size: 0.9rem;
    text-align: center;
    padding: 32px;
}

.mcp-loading {
    color: #3b82f6;
    font-size: 0.9rem;
    text-align: center;
    padding: 32px;
}

.mcp-error {
    color: #ef4444;
    font-size: 0.9rem;
    background: rgba(239, 68, 68, 0.1);
    padding: 16px;
    border-radius: 6px;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Unavailable State */
.mcp-unavailable {
    background: #1e293b;
    border-radius: 8px;
    padding: 32px;
    text-align: center;
}

.mcp-unavailable h3 {
    color: #f59e0b;
    margin-bottom: 16px;
}

.mcp-unavailable p {
    color: #94a3b8;
    margin-bottom: 8px;
}

.mcp-unavailable pre {
    background: #0f172a;
    padding: 16px;
    border-radius: 6px;
    overflow-x: auto;
    font-size: 0.85rem;
    color: #e2e8f0;
    text-align: left;
    margin: 16px 0;
}

/* Panel messages (no selection, multi-select) */
.mcp-panel-message {
    padding: 32px;
    text-align: center;
}

.mcp-panel-message p:first-child {
    font-size: 1.1rem;
    font-weight: 600;
    color: #60a5fa;
    margin-bottom: 8px;
}

.mcp-panel-message .mcp-placeholder {
    padding: 0;
}

/* Placeholder inside trajectory card sections - more compact */
.traj-section-content .mcp-placeholder {
    text-align: left;
    padding: 4px 0;
    margin: 0;
}

.tool-panel-actions {
    margin-top: 16px;
}

/* Panel Mode Tabs */
.panel-mode-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 16px;
    border-bottom: 1px solid #334155;
}

.mode-tab {
    flex: 1;
    padding: 10px 8px;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    color: #64748b;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.mode-tab:hover {
    color: #94a3b8;
    background: rgba(255, 255, 255, 0.03);
}

.mode-tab.active {
    color: #60a5fa;
    border-bottom-color: #60a5fa;
}

/* Annotate Section */
.annotate-section {
    padding: 16px;
}

.annotation-textarea {
    width: 100%;
    min-height: 120px;
    max-height: 400px;
    padding: 12px;
    background: #0f172a;
    border: 1px solid #334155;
    border-radius: 6px;
    color: #e2e8f0;
    font-size: 0.9rem;
    line-height: 1.5;
    resize: vertical;
    margin: 12px 0;
    field-sizing: content; /* Auto-expand to fit content (modern browsers) */
}

.annotation-textarea:focus {
    outline: none;
    border-color: #60a5fa;
}

.annotate-actions {
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid #334155;
}

/* Prompt Section */
.prompt-section {
    padding: 16px;
}

.prompt-warning {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 12px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 6px;
    color: #fbbf24;
    font-size: 0.85rem;
    line-height: 1.4;
}

.warning-icon {
    flex-shrink: 0;
}

.prompt-textarea {
    width: 100%;
    min-height: 120px;
    padding: 12px;
    background: #0f172a;
    border: 1px solid #334155;
    border-radius: 6px;
    color: #e2e8f0;
    font-size: 0.9rem;
    line-height: 1.5;
    resize: vertical;
    margin: 12px 0;
}

.prompt-textarea:focus {
    outline: none;
    border-color: #60a5fa;
}

.prompt-actions {
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid #334155;
}

/* ============================================
   COMPUTER USE VISUALIZATION
   Screenshot display, annotations, fullscreen
   ============================================ */

/* Image container with relative positioning for annotations */
.comp-use-image-container {
    position: relative;
    display: inline-block;
    margin: 8px 0;
    border-radius: 8px;
    overflow: hidden;
    background: #0a0f1a;
    border: 1px solid #334155;
    max-width: 100%;
}

.comp-use-image-container:hover {
    border-color: #475569;
}

/* Screenshot image */
.comp-use-screenshot {
    display: block;
    max-width: 100%;
    height: auto;
    cursor: zoom-in;
    transition: opacity 0.2s;
}

.comp-use-image-container:hover .comp-use-screenshot {
    opacity: 0.95;
}

/* Annotation overlay container */
.comp-use-annotations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Base annotation styles */
.comp-use-annotation {
    position: absolute;
    pointer-events: auto;
    z-index: 10;
}

/* Circle annotation (for clicks) */
.comp-use-circle {
    border-radius: 50%;
    opacity: 0.7;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}

.comp-use-circle.animate {
    animation: click-pulse 0.6s ease-in-out infinite alternate;
}

@keyframes click-pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.4;
    }
}

/* Line annotation (for scroll, drag) */
.comp-use-line {
    height: 3px;
    transform-origin: 0 50%;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Arrow at end of line */
.comp-use-arrow {
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 10px solid;
}

/* Text annotation (for type, key, wait) */
.comp-use-text {
    background: rgba(0, 0, 0, 0.85);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'Monaco', 'Courier New', monospace;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Fullscreen mode */
.comp-use-image-container.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    max-width: none;
    margin: 0;
    border-radius: 0;
    border: none;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
}

.comp-use-image-container.fullscreen .comp-use-screenshot {
    max-width: 95vw;
    max-height: 95vh;
    object-fit: contain;
    cursor: zoom-out;
}

.comp-use-image-container.fullscreen .comp-use-annotations {
    /* Annotations need to overlay the image, not the whole screen */
    position: absolute;
}

/* Prevent body scroll when fullscreen is open */
body.has-fullscreen-image {
    overflow: hidden;
}

/* Close hint for fullscreen */
.comp-use-image-container.fullscreen::after {
    content: 'Click image or press ESC to close';
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: #94a3b8;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    pointer-events: none;
}

/* Action badge showing what action is coming next */
.comp-use-action-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.85);
    color: #e2e8f0;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: 'Monaco', 'Courier New', monospace;
    z-index: 20;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
