/* --- Frame Architecture --- */
.browser-frame-wrapper {
    width: 100%;
    max-width: 1200px;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

/* --- The Header Bar --- */
.browser-header-bar {
    height: 52px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 40px;
}

.traffic-lights { display: flex; gap: 8px; }
.dot { width: 12px; height: 12px; border-radius: 50%; }
.red { background: #ff5f56; }
.yellow { background: #ffbd2e; }
.green { background: #27c93f; }

/* --- Address Bar Styling --- */
.browser-address-bar {
    flex: 1;
    height: 32px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #64748b;
    font-size: 13px;
}

.url-text { color: #1e293b; font-weight: 500; }
.refresh-icon { font-size: 11px; margin-left: 10px; }

.browser-actions { display: flex; gap: 20px; color: #94a3b8; font-size: 14px; }

/* --- Content Canvas --- */
.browser-content-canvas { width: 100%; line-height: 0; }
.canvas-img { width: 100%; height: auto; }