body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex; /* Use flexbox to create a horizontal layout */
    flex-direction: row; /* Arrange elements horizontally */
    align-items: flex-start; /* Align items at the top of the container */
}

.watch-preview {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 1000px;
    background-color: #f0f0f0;
}

.watch-part {
    max-width: 100%;
    max-height: 100%;
    position: absolute;
}

.controls {
    margin-top: 20px;
    text-align: center;
}

.control-panel {
    display: none; /* Hide all control panels by default */
}

.bezel-insert {
    width:100px;
    height:100px;
}