/* עיצוב בסיסי וגלובלי לאתר NETOOLS */
* {
    box-sizing: border-box;
}

body {
    background-color: #0b0f19;
    color: #f1f5f9;
    font-family: 'Rubik', sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto;
    margin: 0;
    padding: 0;
    direction: rtl;
    line-height: 1.6;
}

/* מעטפת כללית */
.container {
    max-width: 1280px;
    margin: 40px auto;
    padding: 0 20px;
}

/* כרטיסים ואלמנטים ויזואליים */
.card, .page-header-card {
    background: #131c2e;
    border: 1px solid #1e293b;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* כותרות סעיפים */
.section-title {
    background: #1e293b;
    color: #f8fafc;
    font-size: 18px;
    font-weight: 700;
    padding: 12px 18px;
    border-radius: 10px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #334155;
}

/* שדות טקסט ואינפוטים */
.form-control, .calc-input, .calc-select-field, .city-select, .cal-select {
    width: 100%;
    padding: 12px 16px;
    background: #0b0f19;
    border: 1px solid #334155;
    color: white;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Rubik', sans-serif;
    outline: none;
    transition: border-color 0.2s;
}

.form-control:focus, .calc-input:focus, .calc-select-field:focus {
    border-color: #0284c7;
}

/* כפתורים ראשיים */
.btn-primary, .calc-btn, .cal-nav-btn {
    background: #0284c7;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-family: 'Rubik', sans-serif;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-primary:hover, .calc-btn:hover, .cal-nav-btn:hover {
    background: #0ea5e9;
}

/* קישורים */
a {
    color: #38bdf8;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
