body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.container {
    display: flex;
    height: 100vh;
}

/* ===== ЛЕВЫЙ ФРЕЙМ ===== */
.left {
    width: 50%;
    padding: 15px;
    border-right: 2px solid #ccc;
}

.left-images {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.left-images img {
    width: 100px;
    height: 70px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
}

.left-images img:hover {
    border-color: #007bff;
}

input {
    width: 98%;
    padding: 6px;
    margin-bottom: 10px;
}

.image-list li {
    cursor: pointer;
    margin-bottom: 5px;
}

.image-list li:hover {
    color: #007bff;
}

/* ===== ПРАВЫЙ ФРЕЙМ ===== */
.right {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.right img {
    width: 80%;
    max-height: 80%;
    object-fit: contain;
    border: 3px solid #007bff;
}
