.is-invalid {
    border-color: red;
}
.b2c-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 25px;
}

/* Prev / Next */
.b2c-pagination .nav-btn {
    padding: 6px 12px;
    border: 1px solid #444;
    border-radius: 6px;
    background: #fff;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: 0.2s ease;
}

.b2c-pagination .nav-btn:hover {
    background: #f5f5f5;
}

/* Page numbers */
.b2c-pagination .page {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #444;
    border-radius: 6px;
    background: #fff;
    color: #333;
    font-size: 14px;
    text-decoration: none;
    transition: 0.2s ease;
}

/* Hover */
.b2c-pagination .page:hover {
    background: #f5f5f5;
}

/* Active (yellow box like screenshot) */
.b2c-pagination .page.active {
    background: #f4b400; /* yellow */
    border-color: #f4b400;
    color: #000;
    font-weight: 600;
}

/* Dots */
.b2c-pagination .dots {
    padding: 0 6px;
    color: #555;
}

/* Disabled */
.b2c-pagination .disabled {
    opacity: 0.5;
    pointer-events: none;
}

/* Mobile Responsive Pagination */
@media (max-width: 576px) {

    .b2c-pagination {

        flex-wrap: wrap;
        gap: 6px;

        justify-content: center;
    }

    .b2c-pagination .page {

        width: 28px;
        height: 28px;

        font-size: 12px;

        border-radius: 5px;
    }

    .b2c-pagination .nav-btn {

        padding: 5px 10px;

        font-size: 12px;

        border-radius: 5px;
    }

    .b2c-pagination .dots {

        font-size: 12px;
        padding: 0 2px;
    }
}

/* Overlay loader */
.blog-loader {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

/* Spinner */
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #ddd;
    border-top: 4px solid #f4b400; /* your yellow */
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.captcha-group {
    margin-top: 10px;
}

.captcha-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f7f9fc;
    border: 1px solid #e3e8ef;
    border-radius: 8px;
    padding: 8px 12px;
    height: 100%;
}

.captcha-box img {
    height: 40px;
    border-radius: 4px;
}

.captcha-refresh {
    border: none;
    background: #fff;
    border-radius: 6px;
    padding: 6px 10px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.2s ease;
}

.captcha-refresh:hover {
    background: #f0f0f0;
    transform: rotate(90deg);
}

.rotating {
    animation: spin 0.5s linear;
}

@keyframes spin {
    from { transform: rotate(0); }
    to { transform: rotate(360deg); }
}

.content-dtel img{
    width: 100% !important; 
    object-fit: cover !important;
    height: 550px !important;
    /* margin-left: auto; */
    margin-right: auto;
    margin-bottom: 2rem;
}
.blog_featured_img img{
    width: 100% !important; 
    object-fit: cover !important;
    /* height: 550px !important; */
    /* margin-left: auto; */
    margin-right: auto;
    margin-bottom: 2rem;
}

.toggle-password {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 16px;
    color: #6c757d;
}

#timeline-img {
    transition: opacity 0.3s ease;
}