body {
    margin: 0;
    padding: 0;
    background-color: black;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    position: relative;
    width: 1200px;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.frame-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: visible;
    transform-origin: center center;
}

.zoom-controls {
    position: fixed;
    top: 20px;
    left: 20px;
    display: flex;
    gap: 10px;
    z-index: 1000;
}

.reset-control {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.control-btn {
    width: 32px;
    height: 32px;
    background-color: #444444;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.2s;
    padding: 0;
}

.control-btn:hover {
    background-color: #666666;
}

#websiteFrame {
    width: 100%;
    height: 100%;
    border: 5px solid #444444;
    box-sizing: border-box;
}

#reloadBtn {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1000;
    background-color: #444444;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.2s;
}

#reloadBtn:hover {
    background-color: #666666;
} 