.browser-frame {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
}

/* Browser App Styles */
.browser-layout {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.browser-toolbar {
    height: 40px;
    background: #f2f2f2;
    display: flex;
    align-items: center;
    padding: 0 8px;
    gap: 8px;
    border-bottom: 1px solid #dcdcdc;
    flex-shrink: 0;
}

.browser-btn {
    width: 32px;
    height: 32px;
    border: 1px solid transparent;
    background: transparent;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1rem;
    color: #444;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.1s;
}

.browser-btn:hover {
    background: rgba(0,0,0,0.05);
    border-color: rgba(0,0,0,0.1);
}

.browser-btn:active {
    background: rgba(0,0,0,0.1);
}

.browser-address {
    flex: 1;
    height: 30px;
    border: 1px solid #ccc;
    background: white;
    border-radius: 3px;
    padding: 0 12px;
    font-size: 0.9rem;
    font-family: inherit;
    outline: none;
    transition: border 0.2s;
}

.browser-address:focus {
    border-color: #0078D7;
}

.browser-viewport {
    flex: 1;
    position: relative;
    background: white;
    overflow: hidden;
}

.browser-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.browser-error {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f8f8f8;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    padding: 40px;
}

.error-content {
    max-width: 500px;
    text-align: left;
}

.error-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #666;
}

.error-content h2 {
    font-size: 1.6rem;
    font-weight: 300;
    margin-bottom: 10px;
    color: #222;
}

.error-content p {
    margin-bottom: 15px;
    line-height: 1.5;
    color: #555;
}

.error-details {
    background: #eaeaea;
    padding: 15px;
    border-radius: 4px;
    font-size: 0.9rem;
    margin: 20px 0;
}

.error-details ul {
    margin-left: 20px;
    margin-top: 5px;
}

.error-details li {
    margin-bottom: 5px;
}