.upload-area {
            border: 2px dashed var(--primary-color);
            border-radius: 12px;
            padding: 2.5rem 1rem;
            text-align: center;
            background-color: rgba(70, 130, 180, 0.02);
            cursor: pointer;
            transition: background-color 0.2s;
            margin-bottom: 1.5rem;
        }
        .upload-area:hover {
            background-color: rgba(70, 130, 180, 0.08);
        }
        .upload-icon {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }
        .preview-container {
            text-align: center;
            margin: 1rem 0;
            background: #f8f9fa;
            padding: 1rem;
            border-radius: 8px;
        }
        .preview-container img {
            max-width: 100%;
            max-height: 300px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .exif-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 1rem;
            font-size: 0.95rem;
        }
        .exif-table th {
            background-color: var(--primary-color);
            color: white;
            font-weight: 500;
            padding: 10px;
            width: 40%;
        }
        .exif-table td {
            padding: 8px 10px;
            border-bottom: 1px solid #eee;
            font-family: 'Courier New', monospace;
            word-break: break-word;
        }
        .exif-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        .map-container {
            height: 300px;
            width: 100%;
            border-radius: 8px;
            margin-top: 1rem;
            border: 1px solid #ddd;
            z-index: 1;
        }
        .badge-exif {
            background-color: #28a745;
            color: white;
            font-size: 0.75rem;
            padding: 0.2rem 0.5rem;
            border-radius: 20px;
            margin-left: 0.5rem;
        }
        .example-btn-small {
            background-color: #e9ecef;
            border: none;
            border-radius: 20px;
            padding: 0.3rem 1rem;
            font-size: 0.85rem;
            margin-right: 0.5rem;
            margin-bottom: 0.5rem;
            color: #495057;
            cursor: pointer;
            transition: 0.2s;
        }
        .example-btn-small:hover {
            background-color: #ced4da;
        }
        .exif-section-title {
            font-weight: 600;
            margin-top: 2rem;
            margin-bottom: 1rem;
            border-left: 5px solid var(--primary-color);
            padding-left: 1rem;
        }
        .footnote {
            font-size: 0.9rem;
            color: #6c757d;
            border-top: 1px solid #dee2e6;
            padding-top: 1rem;
            margin-top: 1.5rem;
        }