/* עיצוב דף העלאת פריט */
.upload-wrapper {
    background-color: #0d4d44; /* הירוק הכהה של הלוגו */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 5%;
    min-height: 80vh;
}

.upload-card {
    background: white;
    width: 100%;
    max-width: 600px;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border-top: 10px solid #d63031; /* הפס האדום שלנו */
}

.upload-card h1 {
    color: #0d4d44;
    text-align: center;
    margin-bottom: 5px;
}

.subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

/* עיצוב כפתור העלאת תמונה */
.custom-file-upload {
    display: block;
    background: #f8f9fa;
    border: 2px dashed #ddd;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
}

.custom-file-upload:hover {
    border-color: #0d4d44;
    background: #f0f7f6;
}

#imageInput { display: none; }

#imagePreview {
    max-width: 100%;
    height: 250px;
    object-fit: cover;
    margin-top: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.divider {
    border: 0;
    border-top: 1px solid #eee;
    margin: 30px 0;
}

/* מיקום */
.current-address-box {
    background: #eef9f1;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 15px;
    color: #0d4d44;
    font-size: 0.95rem;
}

.instruction { font-size: 0.9rem; color: #777; margin-bottom: 10px; }

.address-grid {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr;
    gap: 10px;
    margin-bottom: 15px;
}

.address-grid input {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: inherit;
}

#map {
    height: 250px;
    border-radius: 12px;
    border: 1px solid #ddd;
}

.hidden-section { display: none; }

/* כפתור פרסום */
.btn-publish {
    width: 100%;
    padding: 18px;
    background: #0d4d44;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    margin-top: 30px;
    transition: 0.3s;
    font-family: inherit; 
}

.btn-publish:hover {
    background: #d63031;
    transform: translateY(-2px);
} 