
#BlogsTable i:hover {
    cursor: pointer;
}

.layout-container {
    width: 100%;
    padding:50px 80px;
    overflow-x: auto;
}
.table-heading {
    display: flex;
    justify-content: space-between;
    border-bottom:3px solid var(--secondary-color);
    margin-bottom: 10px;
    padding-bottom: 0px;

    height: 48px;
}
.table-heading .heading {
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 700;
}
.table-heading .add-new a {
    width: 180px;
    height: 36px;
    border-radius: 18px;
    background-color: var(--primary-color);

    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    color: var(--secondary-color);
}
.text-light {
    font-size: 14px !important;
    color: var(--dark) !important;
}

.hidden-textarea {
    display: none;
}


@media screen and (max-width: 1400px) {
    .layout-container {
        padding:40px 60px;
    }
}
@media screen and (max-width: 1200px) {
    .layout-container {
        padding:40px 48px;
    }
}
@media screen and (max-width: 998px) {
    .layout-container {
        padding:30px 36px;
    }
    .table-heading {
        padding-bottom: 4px;
        height: 44px;
    }
    .table-heading .heading {
        font-size: 24px;
    }
    .table-heading .add-new a {
        width: 150px;
        height: 32px;
        font-size: 16px;
    }
}
@media screen and (max-width: 768px) {
    .layout-container {
        padding:25px 25px;
    }
    .table-heading {
        padding-bottom: 6px;
        height: 42px;
    }
    .table-heading .heading {
        font-size: 20px;
    }
    .table-heading .add-new a {
        width: 132px;
        height: 30px;
        font-size: 15px;
    }
}
@media screen and (max-width: 576px) {
    .layout-container {
        padding:25px 12px;
    }
}