/* CSS Reset & Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-color: #E6DFF1;
    --primary: #7A6C9D;
    --secondary: #F1ECF8;
    --text-color: #4E426B;
    --off-white: #FAF8FC;
    
    /* 3D Border Effects common in retro OS */
    --border-light: #ffffff;
    --border-shadow: #b3a6d4;
    --border-dark: #4E426B;
    
    --header-height: 30px;
    --font-sys: 'Space Mono', monospace;
    --font-heading: 'VT323', monospace;
}

body {
    background-color: var(--secondary);
    color: var(--text-color);
    font-family: var(--font-sys);
    font-size: 14px;
    overflow: hidden; /* OS desktop should not scroll */
    min-height: 100vh;
    user-select: none;
}

/* CRT Lines */
.crt {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
}
.scanlines {
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.05) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.02), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.02));
    background-size: 100% 4px, 4px 100%;
    opacity: 0.8;
}

/* Base OS Components */
.os-btn {
    font-family: var(--font-sys);
    background: var(--off-white);
    border-top: 2px solid var(--border-light);
    border-left: 2px solid var(--border-light);
    border-right: 2px solid var(--border-dark);
    border-bottom: 2px solid var(--border-dark);
    color: var(--text-color);
    padding: 2px 6px;
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;
}
.os-btn:active, .os-btn.active {
    border-top: 2px solid var(--border-dark);
    border-left: 2px solid var(--border-dark);
    border-right: 2px solid var(--border-light);
    border-bottom: 2px solid var(--border-light);
    background: var(--bg-color);
    padding: 3px 5px 1px 7px; /* push content down on press */
}

/* Typography styles inside content */
h1, h2, h3, .window-title, .icon-label {
    font-family: var(--font-heading);
}

hr {
    border: none;
    border-top: 1px solid var(--border-shadow);
    border-bottom: 1px solid var(--border-light);
    margin: 10px 0;
}

a {
    color: var(--primary);
    text-decoration: none;
    font-weight: bold;
}
a:hover {
    text-decoration: underline;
    background-color: var(--primary);
    color: white;
}

.text-content {
    user-select: text;
}
.text-content h2 { font-size: 2.2rem; margin-bottom: -5px; }
.text-content h3 { font-size: 1.5rem; margin-top: 15px; color: var(--primary); }
.text-content p { margin-bottom: 10px; line-height: 1.5; }

/* Boot Sequence */
.boot-sequence {
    background: #000;
    color: #0f0;
    position: absolute;
    inset: 0;
    z-index: 1000;
    padding: 20px;
    font-family: 'Space Mono', monospace;
    font-size: 16px;
}
.ascii-logo {
    color: #0f0;
    font-family: monospace;
    font-weight: bold;
    white-space: pre;
    margin-bottom: 20px;
    font-size: 14px;
}
.boot-text {
    max-width: 900px;
    margin: 0 auto;
}
.boot-text p {
    margin-bottom: 5px;
}
.blink {
    animation: blink .8s infinite;
}
@keyframes blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

.boot-progress-wrapper {
    margin-top: 20px;
    width: 300px;
    height: 20px;
    border: 2px solid #0f0;
    padding: 2px;
}
.boot-progress-bar {
    width: 0%;
    height: 100%;
    background-color: #0f0;
}

/* Desktop */
#desktop {
    position: absolute;
    inset: 0;
    background-color: var(--primary);
    /* Soft grid pattern for desktop texture */
    background-image: 
        radial-gradient(var(--bg-color) 1px, transparent 0),
        radial-gradient(var(--bg-color) 1px, transparent 0);
    background-position: 0 0, 10px 10px;
    background-size: 20px 20px;
}

.hidden {
    display: none !important;
}

/* Desktop Widgets */
.desktop-widgets {
    position: absolute;
    top: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 5;
}
.widget.sticky-note {
    width: 220px;
    background-color: #fdfd96;
    color: #333;
    padding: 25px 20px 20px;
    box-shadow: 3px 3px 10px rgba(0,0,0,0.3);
    position: relative;
    border-bottom-right-radius: 20px;
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
}
.widget.sticky-note::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, transparent 50%, rgba(0,0,0,0.1) 50%);
    box-shadow: -2px -2px 5px rgba(0,0,0,0.1);
}
.pin {
    width: 12px;
    height: 12px;
    background: #ff5e5e;
    border-radius: 50%;
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: inset -2px -2px 4px rgba(0,0,0,0.3), 1px 1px 3px rgba(0,0,0,0.4);
}
.quote-text {
    margin-bottom: 10px;
    font-style: italic;
    line-height: 1.4;
}
.quote-author {
    text-align: right;
    font-weight: bold;
}
.btn-reload-quote {
    position: absolute;
    bottom: 5px;
    left: 5px;
    padding: 2px;
    font-size: 10px;
    border: none;
    background: transparent;
    cursor: pointer;
    box-shadow: none;
    opacity: 0.5;
}
.btn-reload-quote:hover {
    opacity: 1;
}

/* Desktop Icons */
.desktop-icons {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    height: calc(100vh - 40px);
    flex-wrap: wrap;
    align-content: flex-start;
}
.desktop-icon {
    width: 80px;
    text-align: center;
    cursor: pointer;
}
.icon-visual {
    width: 50px;
    height: 50px;
    margin: 0 auto 5px;
    background: var(--off-white);
    border: 2px solid var(--text-color);
    box-shadow: 2px 2px 0 var(--border-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}
.icon-visual svg {
    width: 30px;
    height: 30px;
}
.icon-label {
    background: transparent;
    color: #fff;
    padding: 2px 4px;
    font-size: 1.2rem;
    text-shadow: 1px 1px 0px #000;
}
.desktop-icon:hover .icon-label {
    background: var(--primary);
    outline: 1px dotted white;
}
.desktop-icon:active .icon-visual {
    background: var(--text-color);
    color: var(--off-white);
}

/* Windows */
.os-window {
    position: absolute;
    top: 50px;
    left: 50px;
    width: 400px;
    min-width: 300px;
    min-height: 200px;
    background: var(--off-white);
    border-top: 2px solid var(--border-light);
    border-left: 2px solid var(--border-light);
    border-right: 2px solid var(--border-dark);
    border-bottom: 2px solid var(--border-dark);
    display: flex;
    flex-direction: column;
    box-shadow: 4px 4px 10px rgba(0,0,0,0.2);
    /* For dragging */
    z-index: 10;
    overflow: hidden;
    max-height: 85vh;
}
.os-window.active {
    z-index: 100;
}

/* Custom Resize Handles */
.resize-handle {
    position: absolute;
    width: 20px;
    height: 20px;
    z-index: 20;
    background: transparent;
}
.resize-se { bottom: 0; right: 0; cursor: se-resize; }
.resize-sw { bottom: 0; left: 0; cursor: sw-resize; }
.resize-ne { top: 0; right: 0; cursor: ne-resize; }
.resize-nw { top: 0; left: 0; cursor: nw-resize; }
/* Little detail for the SE corner */
.resize-se::after {
    content: '';
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 8px;
    height: 8px;
    border-bottom: 2px solid var(--border-dark);
    border-right: 2px solid var(--border-dark);
}

.os-window.maximized {
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: calc(100vh - 40px) !important;
    max-height: none !important;
    transform: none !important;
}

.window-header {
    height: var(--header-height);
    background: var(--text-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5px;
    cursor: grab;
    user-select: none;
}
.window-header:active {
    cursor: grabbing;
}
.window-title {
    font-size: 1.4rem;
    pointer-events: none;
}
.window-controls {
    display: flex;
    gap: 3px;
}
.window-controls button {
    width: 24px;
    height: 24px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.window-body {
    padding: 15px;
    background: var(--off-white);
    border: 2px solid inset var(--border-shadow);
    flex-grow: 1;
    overflow-y: auto;
}
.window-body.no-pad {
    padding: 0;
    background: var(--secondary);
}

/* About Window specific */
.edu-block {
    background: var(--secondary);
    padding: 10px;
    border: 1px solid var(--border-shadow);
    margin-bottom: 10px;
}
.subtitle {
    background: var(--text-color);
    color: var(--off-white);
    display: inline-block;
    padding: 2px 5px;
    font-size: 0.9rem !important;
}
.contact-list {
    list-style: none;
    line-height: 2;
}
.contact-list span {
    font-weight: bold;
    color: var(--primary);
    display: inline-block;
    width: 80px;
}

/* Projects Window specific */
.project-list {
    display: flex;
    flex-direction: column;
}
.project-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    border-bottom: 2px dotted var(--border-shadow);
}
.project-item:last-child {
    border-bottom: none;
}
.project-image-placeholder {
    width: 250px;
    height: 160px;
    flex-shrink: 0;
    background: var(--border-shadow);
    border: 2px inset var(--border-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--text-color);
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}
.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    image-rendering: auto; /* Removed pixelated effect for better clarity */
    opacity: 0.9;
    transition: opacity 0.3s;
}
.project-img:hover {
    opacity: 1;
}
.project-logo {
    height: 24px;
    width: auto;
    object-fit: contain;
}

.inner-margins-logo {
    transform: scale(0.85); /* Zoomed out slightly without breaking layout */
}

.aphrodite-logo {
    transform: scale(1.3); /* Make the brand logo clearer */
}

.project-image-placeholder svg {
    opacity: 0.5;
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
}
/* You can replace the inner content of project-image-placeholder later via HTML when you have images 
   <img src="..." class="project-img"> */

.project-details {
    flex-grow: 1;
    user-select: text;
}
.project-details h3 {
    margin-top: 0;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.tag {
    font-family: var(--font-sys);
    font-size: 0.8rem;
    background: var(--primary);
    color: white;
    padding: 2px 6px;
    border-radius: 2px;
}
.project-details p {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 10px;
}
.bullets {
    padding-left: 20px;
    font-size: 0.95rem;
    margin-bottom: 10px;
}
.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 15px;
}
.tech-stack span {
    font-size: 0.8rem;
    background: var(--bg-color);
    border: 1px solid var(--primary);
    padding: 1px 6px;
}

.project-links {
    display: flex;
    gap: 10px;
}
.project-links a {
    text-decoration: none;
}

/* Skills Window Specific */
.skills-table {
    width: 100%;
    border-collapse: collapse;
    user-select: text;
}
.skills-table th, .skills-table td {
    padding: 8px;
    border: 1px solid var(--border-shadow);
    background: var(--off-white);
}
.skills-table th {
    background: var(--secondary);
    text-align: left;
    width: 120px;
    color: var(--primary);
}

/* Achievements Specific */
.achievement-list {
    list-style: none;
}
.achievement-list li {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 15px;
    background: var(--secondary);
    padding: 10px;
    border: 1px solid var(--border-shadow);
}
.trophy-icon {
    font-size: 2rem;
}
.achievement-list strong {
    display: block;
    color: var(--primary);
    font-size: 1.1rem;
}

/* App Specific Styles */
.notepad-area {
    width: 100%;
    height: 100%;
    min-height: 200px;
    resize: none;
    border: none;
    padding: 15px;
    font-family: var(--font-sys);
    font-size: 14px;
    outline: none;
    background: #ffffe0;
    color: #333;
    line-height: 1.5;
}
.calc-display {
    width: 100%;
    height: 40px;
    text-align: right;
    margin-bottom: 10px;
    font-family: var(--font-sys);
    font-size: 1.5rem;
    padding: 5px;
    background: #eef;
    border: 2px inset var(--border-shadow);
    color: #333;
}
.calc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
}
.calc-btn {
    height: 40px;
    font-size: 1.2rem;
}

/* Taskbar */
#taskbar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 40px;
    background: var(--bg-color);
    border-top: 2px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4px;
    z-index: 3000;
}
.taskbar-left, .taskbar-right {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 100%;
}
.start-btn {
    height: 32px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 1.2rem;
    font-family: var(--font-heading);
}
.start-btn svg { width: 14px; height: 14px; }
.start-btn.active {
    background: var(--secondary);
}

.taskbar-btn {
    height: 32px;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: normal;
}
.taskbar-btn.active {
    background: url('data:image/svg+xml;utf8,<svg width="4" height="4" xmlns="http://www.w3.org/2000/svg"><rect width="2" height="2" fill="%237A6C9D" fill-opacity="0.3"/></svg>');
}

.clock-display {
    border-top: 2px solid var(--border-dark);
    border-left: 2px solid var(--border-dark);
    border-bottom: 2px solid var(--border-light);
    border-right: 2px solid var(--border-light);
    background: var(--bg-color);
    padding: 0 10px;
    height: 32px;
    display: flex;
    align-items: center;
    font-family: var(--font-sys);
    font-size: 12px;
}



/* Start Menu */
#start-menu {
    position: absolute;
    bottom: 35px; /* Above taskbar */
    left: 2px;
    width: 250px;
    background: var(--off-white);
    border-top: 2px solid var(--border-light);
    border-left: 2px solid var(--border-light);
    border-right: 2px solid var(--border-dark);
    border-bottom: 2px solid var(--border-dark);
    box-shadow: 2px 2px 5px rgba(0,0,0,0.5);
    display: flex;
    z-index: 2000;
    font-family: var(--font-sys);
}
.start-sidebar {
    background: var(--text-color);
    color: white;
    width: 30px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 5px;
    border-right: 1px solid var(--border-dark);
}
.start-sidebar span {
    transform: rotate(-90deg);
    transform-origin: left bottom;
    white-space: nowrap;
    padding-left: 10px;
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 1px;
}
.start-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding: 2px 2px;
    position: relative; /* For submenus */
}
.start-header {
    background: var(--text-color);
    color: white;
    padding: 5px 8px;
    font-weight: bold;
    font-size: 12px;
    margin-bottom: 4px;
}
.start-search-container {
    padding: 0 4px 4px 4px;
}
#start-search {
    width: 100%;
    padding: 4px;
    font-family: var(--font-sys);
    font-size: 12px;
    border: inset 2px var(--border-shadow);
    background: white;
}
.start-items {
    display: flex;
    flex-direction: column;
}
.start-item {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 6px 8px;
    font-family: var(--font-sys);
    font-size: 12px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-color);
}
.start-item:hover, .start-item:focus {
    background: var(--primary);
    color: white;
    outline: none;
}
.start-group.has-submenu {
    position: relative; /* Anchor for submenu positioning */
}
.start-submenu {
    display: none;
    position: absolute;
    bottom: -2px; /* Align with parent item approximately */
    left: 100%; /* To the right of the menu */
    width: 180px;
    background: var(--off-white);
    border-top: 2px solid var(--border-light);
    border-left: 2px solid var(--border-light);
    border-right: 2px solid var(--border-dark);
    border-bottom: 2px solid var(--border-dark);
    box-shadow: 2px 2px 5px rgba(0,0,0,0.5);
    z-index: 2001; /* Above start menu */
}
/* Show submenu on hover of the group or when a child is focused */
.start-group.has-submenu:hover > .start-submenu,
.start-group.has-submenu:focus-within > .start-submenu {
    display: flex;
    flex-direction: column;
}
.start-divider {
    border: 0;
    border-top: 1px solid var(--border-shadow);
    border-bottom: 1px solid var(--border-light);
    margin: 4px 2px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .os-window {
        border-radius: 0;
    }
    .window-body {
        padding: 10px;
    }
    .desktop-widgets {
        display: none !important; /* Hide widgets on small screen to save space */
    }
    .desktop-icons {
        flex-direction: row;
        gap: 15px;
    }
    .project-item {
        flex-direction: column;
    }
    .project-image-placeholder {
        width: 100%;
        height: auto;
        min-height: 140px;
    }
    .window-controls button {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    .taskbar-btn {
        max-width: 70px;
        font-size: 10px;
        padding: 0 4px;
        height: 28px;
    }
    .start-btn {
        font-size: 14px;
        padding: 2px 6px;
        height: 28px;
    }
    .clock-display {
        font-size: 10px;
        padding: 0 4px;
        height: 28px;
    }
    .ascii-logo {
        font-size: 6px;
        line-height: 1.1;
        margin-bottom: 10px;
    }
    .boot-sequence {
        padding: 10px;
    }
    .boot-text {
        font-size: 12px;
    }
    .boot-progress-wrapper {
        width: 100%;
        max-width: 250px;
    }
    .calc-grid {
        grid-template-columns: repeat(4, minmax(40px, 1fr));
        gap: 4px;
    }
    .notepad-area {
        min-height: calc(100vh - 120px);
    }
}


/* Clock Popup Widget */
#clock-popup {
    position: absolute;
    bottom: 35px;
    right: 2px;
    width: 220px;
    background: var(--off-white);
    border-top: 2px solid var(--border-light);
    border-left: 2px solid var(--border-light);
    border-bottom: 2px solid var(--border-dark);
    border-right: 2px solid var(--border-dark);
    box-shadow: 2px 2px 5px rgba(0,0,0,0.5);
    z-index: 2000;
}
#clock-popup .calendar-header {
    background: var(--text-color);
    color: white;
    padding: 3px 5px;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
}
#clock-popup .calendar-body {
    padding: 10px;
}

.clock-live-display {
    font-size: 16px;
    font-weight: bold;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 8px;
    border: inset 2px var(--border-shadow);
    background: white;
    padding: 4px;
    font-family: var(--font-sys);
}
.calendar-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
    font-size: 11px;
    font-weight: bold;
    color: var(--text-color);
}
.calendar-controls button {
    background: var(--off-white);
    border: outset 2px var(--border-light);
    cursor: pointer;
    padding: 1px 6px;
    font-size: 10px;
}
.calendar-controls button:active {
    border: inset 2px var(--border-shadow);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    text-align: center;
}
.cal-day-header {
    background: var(--border-shadow);
    color: var(--text-color);
    font-weight: bold;
    font-size: 10px;
    padding: 2px 0;
}
.cal-day {
    font-size: 12px;
    padding: 4px 0;
    cursor: default;
    border: 1px solid transparent;
}
.cal-day:hover:not(.other-month) {
    background: var(--border-light);
    border-color: var(--border-dark);
}
.cal-day.today {
    border: 1px solid var(--text-color);
    font-weight: bold;
    background: var(--primary);
    color: white;
}
.cal-day.other-month {
    color: var(--border-shadow);
}

/* Context Menu */

#context-menu {
    position: absolute;
    z-index: 10000;
    min-width: 150px;
    background: var(--off-white);
    border-top: 2px solid var(--border-light);
    border-left: 2px solid var(--border-light);
    border-bottom: 2px solid var(--border-dark);
    border-right: 2px solid var(--border-dark);
    box-shadow: 2px 2px 2px rgba(0,0,0,0.2);
    padding: 2px;
}
.menu-item {
    padding: 5px 20px;
    cursor: pointer;
    user-select: none;
}
.menu-item:hover {
    background-color: var(--primary);
    color: #fff;
}
.menu-separator {
    height: 1px;
    background: var(--border-shadow);
    border-bottom: 1px solid var(--border-light);
    margin: 2px;
}

/* Subham AI Assistant (Clippy style) */
#ai-assistant {
    position: absolute;
    bottom: 50px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.assistant-avatar {
    width: 40px;
    height: 40px;
    cursor: pointer;
    background: transparent;
    border: none;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--off-white);
    transition: transform 0.05s ease;
}
.assistant-avatar:active {
    background: transparent;
    border: none;
    box-shadow: none;
    transform: translate(1px, 1px);
}
.assistant-bubble {
    background: #fff;
    border: 2px solid var(--border-dark);
    padding: 10px;
    border-radius: 10px;
    border-bottom-right-radius: 0;
    margin-bottom: 10px;
    box-shadow: 2px 2px 2px rgba(0,0,0,0.1);
    font-size: 12px;
    max-width: 150px;
    text-align: center;
}
.assistant-dialog {
    position: absolute;
    bottom: 75px;
    right: 30px;
    width: 250px;
    background: var(--off-white);
    border-top: 2px solid var(--border-light);
    border-left: 2px solid var(--border-light);
    border-bottom: 2px solid var(--border-dark);
    border-right: 2px solid var(--border-dark);
    box-shadow: 2px 2px 2px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
}
.assistant-dialog .dialog-body {
    height: 150px;
    padding: 10px;
    overflow-y: auto;
    font-size: 12px;
    background: #fff;
    border: inset 2px;
    margin: 5px;
}
.assistant-dialog .dialog-input {
    display: flex;
    padding: 5px;
}
.assistant-dialog .dialog-input input {
    flex-grow: 1;
    margin-right: 5px;
    border: inset 2px;
    padding: 2px 5px;
}
.assistant-dialog .dialog-input button {
    border: outset 2px;
    background: var(--secondary);
    cursor: pointer;
    padding: 2px 5px;
}


#start-menu hr {
    border: 0;
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--off-white);
    margin: 4px 0;
}

#taskbar-context-menu {
    position: absolute;
    z-index: 10001;
    min-width: 120px;
    background: var(--off-white);
    border-top: 2px solid var(--border-light);
    border-left: 2px solid var(--border-light);
    border-bottom: 2px solid var(--border-dark);
    border-right: 2px solid var(--border-dark);
    box-shadow: 2px 2px 2px rgba(0,0,0,0.2);
    padding: 2px;
}

.faq-bubbles {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    padding: 0 5px 5px 5px;
}
.faq-bubble {
    background: var(--primary);
    color: white;
    padding: 2px 6px;
    border: outset 2px var(--border-light);
    font-size: 10px;
    cursor: pointer;
    user-select: none;
}
.faq-bubble:active {
    border: inset 2px var(--border-dark);
}
