#image-container {
            position: relative;
            width: 100%;
            max-width: 500px;
            border: 2px solid #ccc;
            overflow: hidden;
            margin-bottom: 20px;
        }

        #selected-area {
            position: absolute;
            border: 2px dashed #333;
        }

        input[type="file"] {
            display: none;
        }

        .upload-btn {
            padding: 10px 20px;
            font-size: 16px;
            background-color: #4CAF50;
            color: white;
            border: none;
            cursor: pointer;
            border-radius: 4px;
        }

        .upload-btn:hover {
            background-color: #45a049;
        }

        .options {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 10px;
        }

        .option-item {
            display: flex;
            align-items: center;
        }

        .option-item label {
            margin-right: 5px;
        }

        #zoom-slider {
            width: 100%;
        }

        #cropped-images {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .cropped-image-container {
            border: 2px solid #ccc;
            padding: 5px;
        }

        .cropped-image-container img {
            max-width: 150px;
            max-height: 150px;
        }

        button {
            padding: 10px;
            font-size: 16px;
            cursor: pointer;
            border: none;
            border-radius: 4px;
        }

        .rotate-btns {
            display: flex;
            gap: 10px;
        }

        .rotate-btns button {
            background-color: #f44336;
            color: white;
        }

        .rotate-btns button:hover {
            background-color: #d32f2f;
        }

        .reset-btn {
            background-color: #607d8b;
            color: white;
        }

        .reset-btn:hover {
            background-color: #455a64;
        }

        .crop-btn {
            background-color: #2196F3;
            color: white;
        }

        .crop-btn:hover {
            background-color: #0d47a1;
        }

        .download-btn {
            background-color: #9c27b0;
            color: white;
        }

        .download-btn:hover {
            background-color: #6a1b9a;
        }
