.upload-header {
    background: #5b6167;
    color: white;
    text-align: center;
    padding: 25px 20px 35px;
    position: relative;
}

.back-btn {
    position: absolute;
    left: 15px;
    top: 15px;
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.upload-logo {
    width: 300px;
    height: 150px;
    object-fit: contain;
    display: block;
    margin: 10px auto;
}

.upload-header h1 {
    margin: 10px 0 5px;
}

.upload-header p {
    margin: 0;
}


/* PAGE */

.upload-page {
    min-height: 70vh;
    padding: 30px 15px;
    background: #eef5fb;
}

.upload-card {
    max-width: 600px;
    margin: auto;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.upload-card h2 {
    text-align: center;
    color: #0a4d8c;
    margin-top: 0;
    margin-bottom: 25px;
}


/* FORM */

.upload-card label {
    display: block;
    margin-top: 15px;
    margin-bottom: 7px;
    font-weight: bold;
}

.upload-card input,
.upload-card select,
.upload-card textarea {
    width: 100%;
    padding: 13px;
    border: 1px solid #cbd5df;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    background: white;
}

.upload-card textarea {
    resize: vertical;
}


/* FILE */

.file-preview {
    margin-top: 10px;
    padding: 12px;
    background: #f4f8fc;
    border-radius: 8px;
    color: #555;
}


/* IMAGE */

.image-preview {
    margin-top: 15px;
    padding: 10px;
    background: #f4f8fc;
    border-radius: 10px;
    text-align: center;
    min-height: 80px;
}

.image-preview img {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
    border-radius: 8px;
}


/* BUTTON */

.upload-button {
    width: 100%;
    margin-top: 25px;
    padding: 15px;
    border: none;
    border-radius: 9px;
    background: #0a4d8c;
    color: white;
    font-size: 18px;
    cursor: pointer;
}

.upload-button:hover {
    background: #083b6b;
}


/* STATUS */

.upload-status {
    text-align: center;
    margin-top: 20px;
    font-weight: bold;
    word-break: break-word;
}