body {
    font-family: 'Rubik', sans-serif;
    background-color: #f8f9fa;
    text-align: center;
}

.navbar {
    display: flex;
    justify-content: space-between; /* רווח בין הלוגו לתפריט */
    align-items: center; /* ממרכז אנכית את האלמנטים */
    padding: 0.5rem 1rem;
    height: 120px; /* גובה הפס השחור */
    background-color: #343a40; /* צבע הפס השחור */
}

.navbar img {
    height: 70px; /* גובה הלוגו */
    margin-right: 1rem; /* רווח בין הלוגו לקצה */
    align-self: center; /* מבטיח שהלוגו יישאר ממורכז אנכית */
}

.navbar .nav-links {
    display: flex;
    gap: 2rem; /* רווח בין הקישורים */
    margin-left: auto; /* מרווח משמאל ללוגו */
}

.navbar a {
    font-size: 1.2rem;
    color: #fff; /* צבע הטקסט */
    text-decoration: none;
    margin: 0 1rem; /* רווח אופקי בין הקישורים */
    transition: color 0.3s ease; /* מעבר חלק לצבע */
}

.navbar a.active {
    text-decoration: underline;
}

.navbar a:hover {
    color: #ffc107; /* צבע זהב בזמן מעבר עם העכבר */
}

.card-title .number-badge {
    display: inline-block;
    background: #0d6efd;
    color: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    margin-left: 10px;
    font-size: 1.2rem;
    font-weight: 500;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 500;
}

.card-link {
    font-size: 1.2rem; /* מגדיל את המילה "הורד" */
    font-weight: 700; /* הופך את המילה "הורד" ליותר בולטת */
    color: #0d6efd; /* שומר על הצבע כחול */
    text-decoration: none; /* מוודא שאין קו תחתון */
    transition: color 0.3s ease; /* מעבר חלק */
}

.card-link:hover {
    color: #0056b3; /* צבע כחול כהה יותר בעת מעבר עם העכבר */
    text-decoration: underline; /* מוסיף קו תחתון במעבר */
}

footer p {
    font-size: 0.9rem;
    color: #555;
}
