@import url('https://fonts.googleapis.com/earlyaccess/opensanshebrewcondensed.css');


/* עיצוב כללי */
.article-card {
    border: 1px solid black;
    border-radius: 5px;
    padding: 20px;
    background-color: #f9f9f9;
    width: 300px;
    text-align: center;
}

.article-card h2 {
    font-size: 1rem; /* גודל פונט מותאם */
    font-weight: bold; /* הדגשה */
    margin-bottom: 10px;
}

.article-card p {
    font-size: 1rem;
    line-height: 1.5;
}

.categories-container {
    margin-bottom: 20px;
    text-align: center;
}

.category-btn {
    margin: 5px;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border: none;
    display: inline-block;
    cursor: pointer;
}

.category-btn:hover {
    background-color: #0056b3;
}


.articles-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

.inline-bold {
    font-weight: bold;
}



.w-100 {
    margin-top: 20px; /* רווח ברור יותר בין שורות */
}
.btn-secondary {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 14px;
    color: #fff;
    background-color: #6c757d;
    border: 1px solid #6c757d;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
}

body, h1, h2, h3, h4, h5, h6, p, a, span, div {
    font-family: Open Sans Hebrew Condensed !important;
}

.breadcrumb {
    background-color: #f8f9fa; /* צבע רקע */
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.breadcrumb-item a {
    text-decoration: none;
    color: #007bff;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

select,  {
    direction: rtl;
    text-align: right;
}
