/* Fullscreen Window Component CSS */

/* Make fullscreen windows fill the window-area */
.window-fullscreen {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
}

/* Title bar - no shrink */
.window-fullscreen .title-bar {
    flex-shrink: 0;
}

/* Close button - square like real Windows */
.window-fullscreen .title-bar-controls button[aria-label="Close"],
.title-bar-controls button[aria-label="Close"] {
    width: 16px !important;
    height: 14px !important;
    min-width: 16px !important;
    max-width: 16px !important;
    padding: 0 !important;
    box-sizing: content-box;
}

/* Window icon in title bar */
.window-fullscreen .window-icon {
    width: 16px;
    height: 16px;
    margin-right: 4px;
}

/* Window body fills remaining space */
.window-fullscreen .window-body {
    flex: 1;
    overflow: auto;
    padding: 8px;
}

/* Status bar at bottom */
.window-fullscreen .status-bar {
    flex-shrink: 0;
}

/* Browser-style window (for Shop, John's List) */
.browser-toolbar {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
}

.browser-btn {
    width: 24px;
    height: 24px;
    padding: 0;
    font-size: 12px;
}

.browser-urlbar {
    flex: 1;
    padding: 2px 8px;
    font-family: monospace;
    font-size: 11px;
}

.browser-url {
    color: #000080;
}
