* {
    box-sizing: border-box;
}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #1a1a1a;
    font-family: sans-serif;
    overflow: hidden;
}

/* Tampilan Standar: Vertikal (HP) */
.container {
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: 100vh;
}

.camera-section, .model-section {
    position: relative;
    flex: 1;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #333;
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scaleX(-1); /* Efek Cermin */
}

canvas {
    width: 100%;
    height: 100%;
}

.label {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
}

/* Tampilan Desktop: Horizontal (Lebar layar di atas 768px) */
@media (min-width: 768px) {
    .container {
        flex-direction: row;
    }
    .camera-section {
        width: 40%;
        height: 100%;
    }
    .model-section {
        width: 60%;
        height: 100%;
    }
}