
.exif-analyzer-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
}

.upload-area {
    border: 2px dashed #ccc;
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    margin: 20px 0;
    transition: border-color 0.3s;
}

.upload-area:hover {
    border-color: #007cba;
}

.upload-area.dragover {
    border-color: #007cba;
    background-color: #f0f8ff;
}

.upload-label {
    cursor: pointer;
    display: block;
}

#exif-file-input {
    display: none;
}

#analyze-button {
    background: #007cba;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
}

#analyze-button:hover {
    background: #005a87;
}

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

.progress-fill {
    height: 100%;
    background-color: #007cba;
    width: 0%;
    transition: width 0.3s;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.download-buttons {
    display: flex;
    gap: 10px;
}

.download-btn {
    background: #007cba;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
}

.download-btn:hover {
    background: #005a87;
}

.file-result {
    margin-bottom: 30px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
}

.file-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.thumbnail {
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    max-width: 150px;
    height: auto;
}

.manipulation-alert {
    background: #ffebee;
    color: #c62828;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 15px;
    font-weight: bold;
}

.expand-toggle {
    background: #f0f0f0;
    border: 1px solid #ddd;
    cursor: pointer;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.expand-toggle:hover {
    background: #e0e0e0;
}

.exif-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.exif-table th,
.exif-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.exif-table th {
    background-color: #f5f5f5;
    font-weight: bold;
}

.suspicious-field {
    background-color: #ffebee !important;
    color: #c62828;
}

.safe-field {
    background-color: #e8f5e8 !important;
    color: #2e7d32;
}

.camera-field {
    background-color: #ffffff !important;
    color: #424242;
}

.suspicious-only {
    display: block;
}

.all-data {
    display: none;
}

.all-data.expanded {
    display: block;
}

.error-message {
    background: #ffebee;
    color: #c62828;
    padding: 15px;
    border-radius: 4px;
    margin: 10px 0;
}
