/* index.blade.php */
.article-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.new-post {
    padding: 8px 20px;
    color: white;
    background-color: black;
    border-radius: 4px;
}

.page-content {
    @apply bg-white p-8 mt-3;
}

.row {
    display: flex;
    .col {
        flex-grow: 1;
        flex-basis: 0;
    }
}
.content-tb {
    padding: 50px 0px;
}
.table {
    width: 100%;
    padding: 50px 0px;
    border-collapse: collapse;
    tr {
        td,
        th {
            border-top: 1px solid #eee;
            padding: 6px 8px;
            text-align: left;
        }

        th {
            padding-top: 8px;
            padding-bottom: 8px;
        }
    }
}

.btn {
    @apply bg-gray-800 hover:bg-gray-600 text-white text-sm font-bold py-2 px-8 rounded-md;
}

.invalid-feedback {
    color: red;
    font-size: 12px;
}

input[type="text"].is-invalid {
    outline: none;
    border: 1px solid red;
}

.page-builder {
    .handle {
        font-size: 1.7rem;
        color: #999;
        cursor: pointer;
    }
    .pb-item {
        border: 1px solid #ddd;
        min-height: 50px;
        width: 100%;
    }
    .section-item {
        padding: 10px 0;
    }
}
.thumb-img {
    width: 120px;
    height: 60px;
}
.dropdown-action-btn {
    z-index: 2;
}

.image-preview {
    width: 300px;
    height: 200px;
}
#image-preview img {
    width: 300px;
    height: 200px;
}
.submit {
    padding: 10px 20px !important;
    color: white;
    background-color: black;
    border-radius: 4px;
    margin-left: 30px;
}
.cancel {
    padding: 10px 20px;
    color: black;
    background-color: white;
    border-radius: 4px;
}
.content {
    padding: 40px 0 100px 0;
}

.action-btn {
    display: flex;
    gap: 10px;
}
.action-btn a {
    font-size: 12px;
    color: white;
}
.edit {
    background-color: #4f4cf1;
    padding: 5px 8px;
}
.duplicate {
    background-color: #978e8e;
    padding: 5px 8px;
}
.delete {
    background-color: #fa1d1d;
    padding: 5px 8px;
    font-size: 12px !important;
}
.search {
    color: white;
    background-color: black;
}
.msg {
    color: green;
}
.bulk-actions {
    margin: 20px 0 50px 0;
}
.bulk-action-btn {
    background-color: #978e8e;
    padding: 8px 10px;
    color: white;
    margin-left: -5px;
}



/* Frontend side blog single CSS */
.related-articles {
    display: flex ;
    justify-content: space-between ;
    gap: 40px;
}



