/* ============================================
   BROWSER-WINDOW.CSS — Styles for browser mockup
   ============================================ */

.comp-browser-wrap {
    background: #1a1a28;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    flex-shrink: 0;
}

.comp-browser-chrome {
    height: 36px;
    background: #1e1e2e;
    display: flex;
    align-items: center;
    padding: 0 12px;
    gap: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.comp-browser-dots {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.comp-browser-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: block;
}

.comp-browser-url-bar {
    flex: 1;
    height: 22px;
    background: rgba(255,255,255,0.06);
    border-radius: 11px;
    padding: 0 12px;
    font-size: 10px;
    color: #666;
    display: flex;
    align-items: center;
    font-family: monospace;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.comp-browser-content {
    width: 100%;
    overflow: hidden;
    background: #0a0a12;
}

.comp-browser-content-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.comp-browser-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #555;
    font-size: 11px;
    background: linear-gradient(135deg, #0d0d1a, #1a1a2e);
}
