
.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;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 16px;
}
.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 {
    margin-top: 20px;
    text-align: center;
}
.ttb-error {
    color: red;
    font-weight: bold;
}
.ttb-success {
    color: green;
    font-weight: bold;
}
.ttb-download-link {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 16px;
    background-color: #28a745;
    color: white;
    border-radius: 8px;
    text-decoration: none;
}
.ttb-download-link:hover {
    background-color: #218838;
}

.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;
}