.post {
    width: 1040px;
    min-height: 20px;
    margin: 0 auto;
    /* padding-bottom: 45px; */
    /* background-color: rgba(233, 85, 26, 0.8); */
}

.post-ratings-container {
    min-width: 100px;
    margin-left: auto;
    margin-right: 10px;
    display: flex;
    justify-content: end;
    align-items: center; /* ვერტიკალური ცენტრი */
    padding: 12px 0;
}
.post-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default; /* მაუსის ფორმატი, როცა ღილაკზე არ არის დაკლიკვა */
}

.post-rating-count {
    color: rgb(0, 255, 191);
}

.post-rating:not(:last-child) {
    margin-right: 12px; /* ლაიქსა და დისლაიქს შორის მანძილი */
}

/* ლაიქის ღილაკი - საწყისი ფერი */
.post-rating-button.like-button {
    margin-right: 6px;
    cursor: pointer;
    color: #f1860c; /* სტაფილოსფერი (default) */
}

/* დისლაიქის ღილაკი - საწყისი ფერი */
.post-rating-button.dislike-button {
    margin-right: 6px;
    cursor: pointer;
    color: #f1860c; /* სტაფილოსფერი (default) */
}
/* ლაიქზე დაჭერისას */
.post-rating.like-selected .post-rating-button {
    color: #0ce90c; /* მწვანე ფერი */
}

/* დისლაიქზე დაჭერისას */
.post-rating.dislike-selected .post-rating-button {
    color: #e71010; /* წითელი ფერი */
}

/* ჰოვერი (როდესაც მაუსი ღილაკზე გადადის) */
.post-rating:not(.like-selected):not(.dislike-selected) > .post-rating-button:hover {
    color: #000000; /* შავი ფერი ჰოვერისთვის */
}


@media screen and (max-width: 991px) {

    .counter-like-dislike{
        display: flex;
        width: 600px;
        height: 50px;
        margin-left: auto;
        margin-right: auto;
        background-color: hsla(0, 0%, 0%, 0.400);
        border-radius: 10px;
      }
    
      .page-views{
        display: flex;
        min-width: 100px;
        font-size: 15px;
        color: #eb8c0f;
        gap: 5px;
        align-content: center;
        align-items: center;
        text-align: center;
        font-weight: bold;
        margin-left: 10px;
      }

    .post {
        width: 380px;
        min-height: 20px;
        margin: 0 auto;
        /* padding-bottom: 45px; */
        /* background-color: rgba(233, 85, 26, 0.8); */
    }

}

@media screen and (max-width: 767px) {

    .counter-like-dislike{
        display: flex;
        width: 560px;
        height: 50px;
        margin-left: auto;
        margin-right: auto;
        background-color: hsla(0, 0%, 0%, 0.400);
        border-radius: 10px;
      }
    
      .page-views{
        display: flex;
        min-width: 100px;
        font-size: 16px;
        color: #eb8c0f;
        gap: 5px;
        align-content: center;
        align-items: center;
        text-align: center;
        font-weight: bold;
        margin-left: 10px;
      }

    .post {
        width: 330px;
        min-height: 20px;
        margin: 0 auto;
        /* padding-bottom: 45px; */
        /* background-color: rgba(233, 85, 26, 0.8); */
    }
    
}

@media screen and (max-width: 579px) {

    .counter-like-dislike{
        display: flex;
        width: 440px;
        height: 50px;
        margin-left: auto;
        margin-right: auto;
        background-color: hsla(0, 0%, 0%, 0.400);
        border-radius: 10px;
      }
    
      .page-views{
        display: flex;
        min-width: 100px;
        font-size: 15px;
        color: #eb8c0f;
        gap: 5px;
        align-content: center;
        align-items: center;
        text-align: center;
        font-weight: bold;
        margin-left: 10px;
      }

    .post {
        width: 300px;
        min-height: 20px;
        margin: 0 auto;
        /* padding-bottom: 45px; */
        /* background-color: rgba(233, 85, 26, 0.8); */
    }
    
}

@media screen and (max-width: 479px) {

    .counter-like-dislike{
        display: flex;
        width: 300px;
        height: 50px;
        margin-left: auto;
        margin-right: auto;
        background-color: hsla(0, 0%, 0%, 0.400);
        border-radius: 10px;
      }
    
      .page-views{
        display: flex;
        min-width: 100px;
        font-size: 14px;
        color: #eb8c0f;
        gap: 5px;
        align-content: center;
        align-items: center;
        text-align: center;
        font-weight: bold;
        margin-left: 10px;
      }

    .post {
        width: 300px;
        min-height: 20px;
        margin: 0 auto;
        /* padding-bottom: 45px; */
        /* background-color: rgba(233, 85, 26, 0.8); */
    }
}