/* איפוס הגדרות בסיסי */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    height: 100%;
    color: #202124; /* צבע טקסט כהה של גוגל */
}

/* מירכוז התוכן לאמצע המסך */
.main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 90vh;
    padding: 20px;
    text-align: center;
}

.logo {
    height: 80px; /* גודל לוגו */
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.1rem;
    color: #5f6368; /* אפור של גוגל */
    margin-bottom: 40px;
}

/* עיצוב הקופסאות */
.feature-box {
    background: #fff;
    border: 1px solid #dfe1e5;
    border-radius: 12px;
    padding: 30px;
    width: 100%;
    max-width: 480px; /* רוחב מקסימלי כמו תיבת חיפוש */
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: all 0.2s ease;
}

.upload-zone {
    border: 2px dashed #dfe1e5;
    background-color: #f8f9fa;
}
.upload-zone:hover {
    border-color: #9b5de5; /* סגול מהלוגו */
}

/* כפתורים */
.btn {
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    transition: transform 0.1s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.btn:active { transform: scale(0.98); }

/* כפתור ראשי - הגרדיאנט של הלוגו שלך */
.btn-primary {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%); /* סגול לכחול/טורקיז */
    color: white;
    margin-top: 15px;
}

/* כפתור משני לזום */
.btn-secondary {
    background-color: #f1f3f4;
    color: #202124;
    border: 1px solid transparent;
}
.btn-secondary:hover {
    background-color: #e8eaed;
    border-color: #dadce0;
}

.zoom-btn svg {
    color: #2D8CFF; /* כחול של זום */
}

#upload-status {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #5f6368;
}