
.upload-area {
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    background-color: #f8f9fa;
}

.upload-area:hover {
    border-color: #007bff;
    background-color: #e7f3ff;
}

.upload-area.dragover {
    border-color: #007bff;
    background-color: #e7f3ff;
    transform: scale(1.02);
}

.upload-content {
    color: #6c757d;
}

.metadata-table {
    font-size: 0.9rem;
}

.metadata-table th {
    background-color: #f8f9fa;
    border-top: none;
    font-weight: 600;
    width: 40%;
}

.metadata-table td {
    word-break: break-word;
}

.metadata-group {
    margin-bottom: 1.5rem;
}

.metadata-group h6 {
    color: #495057;
    font-weight: 600;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #dee2e6;
}

.gps-info {
    background-color: #e3f2fd;
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
}

.exif-warning {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.image-comparison {
    position: relative;
}

.image-comparison img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.metadata-badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
}

.result-comparison {
    position: relative;
}

.result-comparison .card {
    margin-bottom: 0.5rem;
}

.result-comparison .card-header {
    padding: 0.5rem 0.75rem;
}

.result-comparison .card-body {
    padding: 0.5rem 0.75rem;
}

.metadata-comparison-table {
    font-size: 0.85rem;
}

.metadata-comparison-table th {
    width: 30%;
    background-color: #f8f9fa;
    font-weight: 600;
}

.metadata-comparison-table td {
    word-break: break-word;
}

.metadata-removed {
    color: #dc3545;
    font-weight: 600;
}

.metadata-added {
    color: #198754;
    font-weight: 600;
}

.metadata-unchanged {
    color: #6c757d;
}

.coordinates-display {
    font-family: 'Courier New', monospace;
    background-color: #f8f9fa;
    padding: 5px 8px;
    border-radius: 3px;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .upload-area {
        padding: 30px 15px;
    }
    
    .metadata-table {
        font-size: 0.8rem;
    }
    
    .metadata-table th {
        width: 50%;
    }
}
