.window {
    position: absolute;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    min-width: 400px;
    min-height: 300px;
    z-index: 100;
    overflow: hidden;
}

.window.maximized {
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: calc(100vh - 48px) !important;
    border-radius: 0;
}

.window-header {
    height: 32px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    padding: 0 12px;
    cursor: move;
    user-select: none;
}

.window-title {
    flex: 1;
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.window-controls {
    display: flex;
    gap: 4px;
}

.control-btn {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    transition: opacity 0.2s;
}

.control-btn:hover {
    opacity: 0.8;
}

.minimize-btn {
    background: #ffbd2e;
}

.maximize-btn {
    background: #28ca42;
}

.close-btn {
    background: #ff5f56;
}

.window-content {
    height: calc(100% - 32px);
    overflow: hidden;
    position: relative;
}

.window iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.app-content {
    width: 100%;
    height: 100%;
    padding: 20px;
    color: #333;
    background: #fff;
}

.browser-bar {
    height: 40px;
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    padding: 0 12px;
    gap: 12px;
}

.nav-buttons {
    display: flex;
    gap: 4px;
}

.nav-btn {
    width: 24px;
    height: 24px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.address-bar {
    flex: 1;
    height: 28px;
    border: 1px solid #ddd;
    border-radius: 14px;
    padding: 0 12px;
    font-size: 14px;
    background: #fff;
}

.browser-content {
    height: calc(100% - 40px);
    background: #fff;
}

