/* Variables pour les couleurs et les ombres */
:root {
    --primary-color: #2196F3;
    --background-color: #f8f9fa;
    --border-radius: 8px;
    --box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background-color: var(--background-color);
    margin: 0;
    padding: 20px;
    color: #333;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.page-title {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 2.8em;
    font-weight: 700;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #2196F3, #1976D2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    padding-bottom: 0.5rem;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #2196F3, #1976D2);
    border-radius: 2px;
}

/* Ajout d'une animation subtile au survol */
.page-title:hover::after {
    width: 80px;
    transition: width 0.3s ease;
}

.drop-zone {
    border: 1px dashed #ccc;
    border-radius: var(--border-radius);
    padding: 40px;
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    background-color: white;
    box-shadow: var(--box-shadow);
}

.drop-zone:hover {
    border-color: var(--primary-color);
    background-color: rgba(33, 150, 243, 0.02);
}

.drop-zone.dragover {
    border-color: var(--primary-color);
    background-color: rgba(33, 150, 243, 0.05);
    transform: scale(1.01);
}

.drop-zone p {
    margin: 0 0 20px 0;
    font-size: 1.1em;
    color: #666;
}

.drop-zone input[type="file"] {
    display: none;
}

.drop-zone label {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.drop-zone label:hover {
    background-color: #1976D2;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.preview-container {
    margin-bottom: 20px;
    text-align: center;
    padding: 0;
    background: none;
    box-shadow: none;
}

.image-preview {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
    border-radius: var(--border-radius);
    display: inline-block;
    border: 1px solid #ddd;
    padding: 8px;
    background: white;
    box-shadow: var(--box-shadow);
}

.exif-container {
    background-color: white;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.exif-container h2 {
    margin-top: 0;
    color: #444;
    font-size: 1.5em;
    margin-bottom: 20px;
}

.exif-container table {
    width: 100%;
    border-collapse: collapse;
}

.exif-container tr {
    border-bottom: 1px solid #eee;
}

.exif-container tr:last-child {
    border-bottom: none;
}

.exif-container td {
    padding: 12px 8px;
}

.exif-container td:first-child {
    width: 200px;
    color: #666;
}

.export-button-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.export-button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.export-button:hover {
    background-color: #45a049;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

footer {
    text-align: center;
    margin-top: 40px;
    color: #666;
    font-size: 0.9em;
}

/* Classe pour cacher les éléments */
.hidden {
    display: none;
}

.bmc-container {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

/* Suppression de tous les styles liés au bouton BMC */ 