body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
}

.container {
    display: flex;
    width: 90%;
    height: 90%;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.sidebar {
    width: 20%;
    padding: 20px;
    box-sizing: border-box;
}

.sidebar.left {
    background-color: #f9f9f9;
}

.sidebar.right {
    background-color: #f9f9f9;
}

.main-content {
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.image-container {
    position: relative;
}

.image-controls {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
}

.image-controls button {
    margin: 5px 0;
}

.slider-container {
    margin-bottom: 20px;
}

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

button {
    background-color: #ff6f61;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    margin: 10px 0;
}

button:hover {
    background-color: #ff3f31;
}
