       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            margin: 0;
            padding: 0;
            height: 100vh;
            display: grid;
            grid-template-columns: 1fr 1fr;
            font-family: Arial, sans-serif;
            overflow: hidden;
        }

        #map {
            height: 100vh;
            position: relative;
            z-index: 1;
        }

        .preview-section {
            padding: 20px;
            background: #f5f5f5;
            height: 100vh;
            display: flex;
            flex-direction: column;
            gap: 15px;
            box-sizing: border-box;
            overflow-y: auto;
        }

        .input-group {
            margin-bottom: 8px;
        }

        label {
            display: block;
            margin-bottom: 3px;
            font-size: 0.9em;
            color: #666;
        }

        input, button, textarea {
            width: 100%;
            padding: 8px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 0.9em;
        }

        textarea {
            min-height: 80px;
            resize: vertical;
        }

        .coord-group {
            display: flex;
            gap: 8px;
            margin-bottom: 12px;
        }

        .image-preview-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 12px;
            margin: 10px 0;
        }

        .image-preview-item {
            position: relative;
            border: 1px solid #ddd;
            border-radius: 4px;
            padding: 5px;
            background: white;
            text-align: center;
        }

        .image-preview-item img {
            max-width: 100%;
            height: auto;
            max-height: 100px;
            object-fit: contain;
            border-radius: 2px;
        }

        .image-preview-item .remove-image {
            position: absolute;
            top: -8px;
            right: -8px;
            background: #ff4444;
            color: white;
            border: none;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            cursor: pointer;
            padding: 0;
            line-height: 24px;
            font-size: 16px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
      /* Logo and Title Styles */
        .app-header {
            position: absolute;
            top: 10px;
            left: 50px;
            z-index: 1001;
            display: flex;
            align-items: center;
            background-color: rgba(255, 255, 255, 0.9);
            padding: 8px 12px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        }
        
        .app-logo {
            width: 45px;
            height: 45px;
            margin-right: 10px;
        }
        
        .app-title {
            font-size: 20px;
            font-weight: bold;
            color: #333;
            margin: 0;
        }
        .search-box {
            position: absolute;
            top: 90px;
            left: 10px;
            z-index: 1000;
            background: white;
            padding: 12px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
            width: 300px;
            display: flex;
            gap: 8px;
        }

        .search-box input {
            flex: 1;
        }

        .search-box button {
            width: auto;
            padding: 8px 16px;
            background-color: #000080;
        }

        .button-group {
            margin-top: auto;
            display: flex;
            flex-direction: column;
            gap: 8px;
            padding-top: 16px;
            border-top: 1px solid #ddd;
        }

        button {
            background: #000080;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.2s ease;
            font-weight: 500;
            padding: 10px;
        }

        button:hover {
            background: #36fbde;
            transform: translateY(-1px);
        }

        button:active {
            transform: translateY(0);
        }

        .progress-bar {
            width: 100%;
            height: 20px;
            background-color: #f0f0f0;
            border-radius: 10px;
            overflow: hidden;
            display: none;
            margin-top: 12px;
        }

        .progress-bar-fill {
            height: 100%;
            background-color: #4CAF50;
            width: 0%;
            transition: width 0.3s ease;
        }

        #imageInput {
            background: white;
            padding: 12px;
            border: 2px dashed #ccc;
            border-radius: 6px;
            cursor: pointer;
        }

        #imageInput:hover {
            border-color: #007bff;
        }

        input[readonly] {
            background-color: #f8f8f8;
            cursor: not-allowed;
        }

        input[type="number"] {
            -moz-appearance: textfield;
        }

        input[type="number"]::-webkit-outer-spin-button,
        input[type="number"]::-webkit-inner-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }