body {
    background: #f5f7fb;
    font-family: 'Segoe UI', sans-serif;
}

/* ===== NAVBAR ===== */
.navbar {
    background: #004aad;
}

.navbar-brand img {
    height: 40px;
    width: auto;
}

.nav-link {
    color: #fff !important;
    font-weight: 500;
    margin: 0 8px;
}

.nav-link:hover {
    text-decoration: underline;
}

.nav-tabs .nav-link.active {
    color: #000;
    font-weight: 600;
    border-bottom: 3px solid #ff5722;
}

footer {
    background: #222;
    color: #fff;
    padding: 15px 0;
    text-align: center;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .navbar-brand img {
        height: 32px;
    }
}

.doc-card {
    border-radius: 10px;
    background: #fff;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: .3s ease;
}
.doc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
.doc-price {
    font-size: 22px;
    font-weight: bold;
    color: #004aad;
}

.btn-primary {
    background: #004aad;
}


/* MAIN WRAPPER */
.pagination-premium {
    background: transparent !important;
    padding: 10px 0 !important;
    margin-top: 20px;
}

/* CENTER BUTTONS */
.pagination-premium .pagination {
    justify-content: center !important;
    gap: 6px;
}

/* PAGE LINK STYLE */
.pagination-premium .page-link {
    color: #0d47a1;
    border: 1px solid #dbe4f3;
    padding: 8px 16px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 8px;
    background: #fff;
    transition: all 0.25s ease-in-out;
    min-width: 42px;
    text-align: center;
}

/* ICONS */
.pagination-premium .page-link i {
    font-size: 14px;
}

/* HOVER EFFECT */
.pagination-premium .page-link:hover {
    background: #0d47a1;
    color: #fff;
    border-color: #0d47a1;
    box-shadow: 0 3px 8px rgba(13, 71, 161, 0.25);
    transform: translateY(-2px);
}

/* ACTIVE BUTTON */
.pagination-premium .page-item.active .page-link {
    background: #0d47a1 !important;
    color: #fff !important;
    border-color: #0d47a1 !important;
    box-shadow: 0 4px 12px rgba(13, 71, 161, 0.35);
    transform: translateY(-2px);
}

/* DISABLED BUTTON */
.pagination-premium .page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f1f4fa;
    border-color: #e4e9f2;
}

/* "Showing results" text */
.pagination-premium p {
    text-align: center;
    font-size: 13px;
    margin-top: 10px;
    color: #67748e;
    font-weight: 500;
}
