.booth-map-container { background: white; border-radius: 10px; box-shadow: 0 2px 10px rgba(0,0,0,0.1); padding: 0; margin-bottom: 0; } .map-header { margin-bottom: 15px; border-bottom: 2px solid #e9ecef; padding-bottom: 15px; flex-shrink: 0; } .zoom-controls { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin-bottom: 15px; } .zoom-btn { min-width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; } .image-container { position: relative; overflow: hidden; border: 2px solid #dee2e6; border-radius: 8px; background: #f8f9fa; flex: 1; min-height: 400px; cursor: move; } .image-wrapper { position: relative; display: inline-block; width: 100%; min-height: 100%; } .image-wrapper img { display: block; max-width: 100%; } .booth-image { display: block; width: 100%; height: auto; user-select: none; -webkit-user-drag: none; pointer-events: none; } .booth-overlay { position: absolute; border: 3px solid transparent; border-radius: 5px; cursor: pointer; transition: all 0.3s ease; background: rgba(0, 123, 255, 0.1); pointer-events: auto; } .booth-overlay:hover { border-color: #007bff; background: rgba(0, 123, 255, 0.2); box-shadow: 0 0 10px rgba(0, 123, 255, 0.5); } .booth-overlay.selected { border-color: #28a745; background: rgba(40, 167, 69, 0.2); box-shadow: 0 0 15px rgba(40, 167, 69, 0.6); z-index: 10; } .booth-label { position: absolute; background: rgba(0, 0, 0, 0.7); color: white; padding: 2px 8px; border-radius: 3px; font-size: 12px; font-weight: bold; pointer-events: none; white-space: nowrap; } .selected-booth-info { background: #e7f3ff; border: 2px solid #007bff; border-radius: 8px; padding: 15px; margin-top: 15px; display: none; flex-shrink: 0; } .selected-booth-info.show { display: block; } .zoom-level { font-weight: bold; color: #6c757d; min-width: 80px; } .reset-btn { margin-left: auto; } @media (max-width: 768px) { .zoom-controls { justify-content: center; } .reset-btn { margin-left: 0; width: 100%; } .image-container { min-height: 300px; } } .instructions { background: #fff3cd; border: 1px solid #ffc107; border-radius: 5px; padding: 10px; margin-bottom: 15px; font-size: 14px; }