.exif-layout {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 30px;
}

@media (max-width: 900px) {
    .exif-layout { grid-template-columns: 1fr; }
}

.preview-img-wrap {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    background: #f7f7fb;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

#previewImg {
    max-width: 100%;
    max-height: 400px;
    display: block;
}

.tabs-mini {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    background: #f0f0f5;
    padding: 4px;
    border-radius: 8px;
}

.tab-mini-btn {
    flex: 1;
    border: none;
    background: transparent;
    padding: 8px;
    border-radius: 6px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.2s;
}

.tab-mini-btn.active {
    background: #fff;
    color: var(--brand);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.table-wrap {
    max-height: 600px;
    overflow-y: auto;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.exif-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.exif-table th {
    background: #f8f9fc;
    text-align: left;
    padding: 10px 14px;
    position: sticky;
    top: 0;
    border-bottom: 1px solid var(--line);
}

.exif-table td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--line);
    word-break: break-all;
}

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

.exif-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.divider {
    border: 0;
    border-top: 1px solid var(--line);
    margin: 10px 0;
}

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

.full-width { width: 100%; }
.mt-3 { margin-top: 1rem; }
.mt-2 { margin-top: 0.5rem; }
.hidden { display: none !important; }
