* {
    padding: 0;
    margin: 0;
}

body {
    background-color: var(--body);
}

/* reusable start */
:root {
    --grey: #F0F2F5;
    --white: #fff;
    --body: #F2F4F7;
    --blue: #0866FF;
    --hover-grey: #D6D9DD;
    --text-dark: rgb(8, 8, 9);
    --list-item-hover: #e6e8ea;
    --grey-font: rgb(101, 104, 108);
}

.d-flex {
    display: flex;
}

.gap-10 {
    gap: 10px;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-space-between {
    justify-content: space-between;
}

.align-items-center {
    align-items: center;
}

/* reusable end */

/* header start */

header {
    background-color: var(--white);
    padding: 0px 30px;
}

input {
    height: 40px;
    background-color: var(--grey);
    border: none;
    border-radius: 100px;
    padding-left: 10px;

}

input[type="search"] {
    background-image: url(./images/search.png);
    background-repeat: no-repeat;
    background-position: 15px 13px;
    background-size: 14px;
    padding-left: 35px;
}

div.active {
    height: 60px;
    display: flex;
    align-items: center;
    padding: 0px 40px;
    border-width: 0 0 3px 0;
    border-style: solid;
    border-color: var(--blue);
}

div.in-active {
    display: flex;
    align-items: center;
    padding: 0px 40px;
    border-radius: 10px;
    margin: 5px 0;
}

div.in-active:hover {
    background-color: var(--grey);
}

.menu-images img {
    background-color: var(--body);
    padding: 10px;
    border-radius: 50%;
}

.menu-images img:hover {
    background-color: var(--hover-grey);
}

.profile-img {
    height: 40px;
    width: 40px;
    object-fit: cover;
    padding: 0 !important;
    border-radius: 100%;
}

/* header end */

/* main start */

aside {
    padding: 10px 0 10px 30px;
    width: 50%;
    height: calc(100vh - 60px);
    overflow-y: auto;
}

aside .list-item {
    padding: 10px;
    border-radius: 10px 0 0 10px;
}

aside .list-item:hover {
    background-color: var(--list-item-hover);
}

aside .list-item p {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 19.9995px;
    color: var(--text-dark);
}

aside .down-carot {
    background-color: var(--hover-grey);
    padding: 8px;
    border-radius: 50%;
}

.feed {
    width: 100%;
    padding: 15px 30px;
    gap: 15px;
    flex-direction: column;
}

.status {
    padding: 10px 15px;
}

.box {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: -1px 1px 3px 0px #00000035;
}

.feed input {
    width: 100%;
}

.feed input:hover {
    background-color: var(--hover-grey);
}

.status-icon {
    width: 25px;
    height: 25px;
    object-fit: contain;
    padding: 8px;
    border-radius: 12px;
}

.status-icon:hover {
    background-color: var(--grey);
}

.post .publisher-info {
    padding: 10px;
}

.post .post-description {
    padding: 0 10px;
    font-family: "Segoe UI Historic", "Segoe UI", Helvetica, Arial, sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 19.9995px;
    color:var(--text-dark);
}

.post-title {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 19.9995px;
    color: var(--text-dark);
}

.small-font {
    font-family: "Segoe UI Historic", "Segoe UI", Helvetica, Arial, sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 16.0004px;
    color: var(--grey-font);
}

.post .post-img{
    width: 100%;
    height: 470px;
    object-fit: contain;
    object-position: center;
    border-color: var(--hover-grey);
    border-style: solid;
    border-width: 1px 0 1px 0;
    margin-top: 10px;
}

.right-sidebar {
    width: 50%;
}

/* main end */