body {
    font-family:    "SF", "SF_he" ;
    padding: 14px;
    background-color: #f4f4f4;
}

/* Sets the system font only on phones */
@media screen and (max-width: 768px) {
    body {
        font-family:-apple-system, "SF", "SF_he" ;
    }
    
}

@font-face {
    font-family: "San Francisco";
    font-weight: 400;
    src: url("https://applesocial.s3.amazonaws.com/assets/styles/fonts/sanfrancisco/sanfranciscodisplay-regular-webfont.woff");
  }

  @font-face {
    font-family:"SF Bold";
    src: url("SFUIText-Bold.ttf") format("truetype");
  }

  @font-face {
    font-family: "SF" ;
    src: url("SFUIDisplay-Regular.ttf") format("truetype");
  }

  @font-face {
    font-family: "SF_he" ;
    src: url("SF-Hebrew.ttf") format("truetype");
  }



/* Title */
.header {
    
    text-align: left;
    margin-bottom: 10px;
    font-size: 31px;
    font-weight: bold;
    color: #000000;
    

}

/* Search Box */
.search-box {
    height: 12px;
    max-width: 700px;
    margin: 5px auto;
    padding: 10px;
    background-color: #E3E3E8;
    border-radius: 8px;
    display: flex;
    align-items: center;
    direction: rtl;
}

.search-box img {
    padding: 5px;
    width: 20px;
    height: 25px;
    margin-right: 0px;
    opacity: 0.4;
}

.search-box input {
    border: none;
    background: none;
    width: 100%;
    
    font-size: 16px;
    color: #333;
    opacity: 0.85;
}

.search-box input::placeholder {
    color: #888;
}

/* Main Content Box */
.main-content {
    background-color: #fff;
    border-radius: 10px;
    padding-top: 16px;
    padding-bottom: 10px;
    padding-right: 30px;
    margin: 25px auto;
    /*width: 75%;*/
    max-width: 700px;
    /*box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);*/

    direction: rtl;
    overflow: hidden;
    white-space: nowrap;

    
    
}

/* Title inside main content */
.main-content .title {

    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 2px;
    
    text-overflow: ellipsis;
    margin-left: 10px;


    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 7px;
    margin-left: 10px;
    direction: rtl;
}

.list-date {
    color: #8B8B8F;
    margin-left: 5px;
    font-size: 13px;
}

/* Single line text with ellipsis if too long */
.main-content .text {
    font-size: 14px;
    color: #8B8B8F;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 7px;
    margin-left: 10px;
    direction: rtl;
}

/* Divider Line */
.divider {
    border-top: 1px solid #ddd;
    margin: 0px;
    padding-bottom: 10px;
}

/* List of Entries */
.entry {
    padding: 10px 0;
    font-size: 16px;
    color: #333;
}


a {
color: #000000;
text-decoration: none;}


