.ttb-exif-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
    background: #ffffff;
    border: 2px solid #ddd;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    font-family: 'Segoe UI', sans-serif;
}

.ttb-exif-buttons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.ttb-exif-buttons button {
    padding: 10px 16px;
    font-size: 14px;
    border: none;
    background-color: #007bff;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.ttb-exif-buttons button:hover {
    background-color: #0056b3;
}

.ttb-exif-output h3 {
    margin-top: 20px;
    font-size: 18px;
    color: #333;
}

.ttb-exif-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.ttb-exif-table td {
    padding: 8px;
    border: 1px solid #ccc;
}

.ttb-error {
    color: red;
    font-weight: bold;
    text-align: center;
}

.ttb-exif-container input[type="file"] {
    width: 100%;
    padding: 12px;
    border: 2px dashed #bbb;
    border-radius: 12px;
    background-color: #f8f8f8;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.ttb-exif-container input[type="file"]:hover {
    border-color: #007bff;
    background-color: #f0f8ff;
}

#ttbExifOutputWrapper h3 { font-weight: 700; font-size: 22px; }