/* ================================
    PAGE HEADER & TOOLBAR
    ================================ */
.seo-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: #ffffff;
    border-radius: 10px;
    margin-top: -15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.seo-bulk-actions {
    display: flex;
    gap: 8px;
}
.seo-btn-main {
    font-weight: 600;
    letter-spacing: 0.3px;
    padding: 7px 14px;
}
/* ================================
CARD HEADER UPGRADE
================================ */
.card-header.bg-gradient-primary {
    padding: 18px 20px;
    border-bottom: none;
}
.card-header h4 {
    font-size: 18px;
    letter-spacing: 0.3px;
}
.card-header i {
    opacity: 0.9;
}
/* ================================
CONTAINER SPACING
================================ */
.container-fluid {
    background: #f4f6fb;
    min-height: 100vh;
}
/* ================================
TABLE IMPROVEMENTS
================================ */
#seoTable {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}
#seoTable thead th {
    font-size: 12px;
    padding: 10px 8px;
}
#seoTable tbody td {
    padding: 8px 6px;
}
/* ================================
CHECKBOX STYLE
================================ */
.row-check {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #0465b3;
}
/* ================================
MOBILE FRIENDLY
================================ */
@media (max-width: 768px) {
    .seo-toolbar {
        flex-direction: column;
        align-items: stretch;
    }
    .seo-bulk-actions {
        justify-content: space-between;
    }
}
.seo-control select,
.seo-control input {
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 6px 10px;
    height: 34px;
    font-size: 13.5px;
    background: #f9fafc;
    color: #023585;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: all 0.15s ease;
}
.seo-control select:focus,
.seo-control input:focus {
    border-color: #0465b3;
    background: #fff;
    box-shadow: 0 0 0 0.2rem rgba(4, 101, 179, 0.15);
    outline: none;
}
.seo-control {
    min-width: 200px;
}
.seo-control input::placeholder {
    color: #9ca3af;
    font-style: italic;
}
.bg-gradient-primary {
    background: linear-gradient(90deg, #023585, #0465b3);
}
.card {
    border-radius: 10px;
}
.card-header {
    border-radius: 10px 10px 0 0 !important;
}
table:not(.dt) tbody tr:not(.colorRows):not(.emptyRow):not(.notAutoNum) td:nth-child(1)::after{
    display:none;
}
#seoTable th,
#seoTable td {
    vertical-align: middle;
    font-size: 13.5px;
    white-space: nowrap;
}
#seoTable thead {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
#seoTable tbody tr:hover {
    background-color: #f3f6fc !important;
    transition: background 0.2s ease-in-out;
}
#seoTable input,
#seoTable textarea {
    border: 1px solid #d1d5db;
    border-radius: 4px;
    padding: 4px 6px;
    background: #fafafa;
    font-size: 13px;
    transition: all 0.15s ease;
}
#seoTable input:focus,
#seoTable textarea:focus {
    border-color: #0465b3;
    background: #fff;
    box-shadow: 0 0 0 0.2rem rgba(4, 101, 179, 0.15);
}
#seoTable textarea {
    resize: vertical;
    min-height: 34px;
}
.noindex-cell {
    text-align: center;
    vertical-align: middle;
}
.noindex-cell input[type="checkbox"] {
    width: 22px;
    height: 22px;
    cursor: pointer;
    accent-color: #0465b3;
    margin-bottom: 4px;
}
.noindex-cell .badge {
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 6px;
    min-width: 65px;
}
.breadcrumb {
    font-size: 13px;
    margin-bottom: 10px;
}
tr.table-success {
    animation: flashGreen 0.7s ease;
}
tr.table-danger {
    animation: flashRed 0.7s ease;
}
@keyframes flashGreen {
    0% {
        background-color: #d4edda;
    }
    100% {
        background-color: transparent;
    }
}
@keyframes flashRed {
    0% {
        background-color: #f8d7da;
    }
    100% {
        background-color: transparent;
    }
}
