/* גריד כללי */
.custom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 40px 0px;
  margin: 20px 0;
  padding: 0;
}

.custom-grid .e-loop-item{
      display: flex;
  flex-direction: column;
  height: 100%;
}



.pl-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

#plHeadSection{
    display: flex;
    flex-direction: column;
    width: 100%;
}

#pl-form_container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10px 40px;
}

#pl-form_container select{
    padding: 5px;
    border: 1px solid gold;
    border-radius: 0px;
    background-color: black;
    color: white;
}

#pNum{
    font-family: 'Noto Sans Hebrew';
    font-size: 24px;
    font-weight: 500;
}


#plTitle{
    font-family: 'Noto Sans Hebrew';
    font-size: 30px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#plTitle h3{
    font-size: 30px;
}

.prop-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 40px 0;
    font-family: inherit;
    background: #c6d4ec;

}

/* קישורים רגילים (מספרי עמודים לא נוכחיים) */
.prop-pagination a {
  padding: 8px 14px;
  background: none;
  color: #08162E !important;
  text-decoration: none;
  border: 1px solid #c6d4ec;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
}

.prop-pagination a:hover{
    background: #08162E;
    color: white !important;
    border: 1px solid #EDCE97;
}

/* עמוד נוכחי */
.prop-pagination a.current {
    background-color: #08162E;
    color: #ffffff !important;
    border: 1px solid #EDCE97;
    border-radius: 0;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* חצים (הבא/הקודם) */
.prop-pagination a.prev,
.prop-pagination a.next {
    background-color: #08162E;
    color: #ffffff !important;
    border: 1px solid #EDCE97;
    padding: 8px 14px;
    font-family: "Noto Sans Hebrew", Sans-serif;
    font-size: 24px;
    font-weight: 500;
    border-radius: 0;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* אפקט מעבר (hover) רק לחיצים) */
.prop-pagination a.prev:hover,
.prop-pagination a.next:hover {
  background-color: black;
  color: white !important;
}

/* נקודות (dots) */
.prop-pagination .dots {
    color: #08162E;
    font-family: "Noto Sans Hebrew", Sans-serif;
    font-size: 24px;
    font-weight: 500;
    cursor: default;
}
