@charset "utf-8";
/* CSS Document */

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: #f5f5f5;
    padding: 20px;
}

.form-container {
    background: white;
    padding: 20px 30px;
    border-radius: 8px;
    max-width: 800px;
    margin: auto;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

h2 {
    margin-top: 0;
    font-weight: 600;
}

.form-row {
    display: flex;
    margin-bottom: 15px;
    align-items: center;
}

.form-row label {
    width: 150px;
    font-weight: 600;
}

.form-row input[type="text"],
.form-row input[type="number"],
.form-row textarea {
    flex: 1;
    padding: 8px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: "Segoe UI", Arial, sans-serif;
}

textarea {
    height: 90px;
    resize: vertical;
}

.image-preview {
    margin: 10px 0;
    text-align: center;
}

.image-preview img {
    max-height: 200px;
    border-radius: 4px;
    border: 1px solid #ddd;
    padding: 4px;
    background: #fafafa;
}

button {
    padding: 10px 18px;
    background: #0078d4;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    margin-top: 10px;
}

button:hover {
    background: #005fa3;
}
.back-button {
    display: inline-block;
    padding: 8px 14px;
    background: #0078d4;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-family: Oswald, Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.back-button:hover {
    background: #005fa3;
}
.readonly-value {
    padding: 8px 12px;
    background: #f3f3f3;
    border: 1px solid #ccc;
    border-radius: 4px;
    min-height: 20px;
    display: flex;
    align-items: center;
}