/* ==================== PPID THEME CSS ==================== */
/* Hero Section */
.ppid-hero {
    background: #015266;
    padding: 60px 0;
    position: relative;
    margin-bottom: -30px;
}

.ppid-hero-title {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.ppid-hero-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 650px;
}

.btn-ppid-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #a2b910;
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(162, 185, 16, 0.3);
}

.btn-ppid-hero:hover {
    background: #fff;
    color: #015266;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 255, 255, 0.3);
}

/* Main Section */
.ppid-main-section {
    padding: 60px 0 80px;
    background: rgba(1, 82, 102, 0.02);
}

/* Sidebar */
.ppid-sidebar {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(1, 82, 102, 0.1);
    overflow: hidden;
}

.ppid-sidebar-header {
    background: #015266;
    color: #fff;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.ppid-sidebar-header svg {
    flex-shrink: 0;
}

.ppid-sidebar-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
}

.ppid-sidebar-section {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(1, 82, 102, 0.1);
}

.ppid-sidebar-section:last-child {
    border-bottom: none;
}

.ppid-sidebar-subtitle {
    color: #015266;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 12px 0;
    opacity: 0.7;
}

.ppid-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ppid-menu li {
    margin-bottom: 4px;
}

.ppid-menu a {
    display: block;
    color: #015266;
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.ppid-menu a:hover {
    background: rgba(1, 82, 102, 0.05);
    border-left-color: #a2b910;
    padding-left: 16px;
}

.ppid-menu a.active {
    background: rgba(1, 82, 102, 0.1);
    border-left-color: #015266;
    font-weight: 600;
    padding-left: 16px;
}

/* Content Card */
.ppid-content-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(1, 82, 102, 0.1);
    overflow: hidden;
}

.ppid-content-header {
    background: #fff;
    padding: 32px;
    border-bottom: 3px solid #015266;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.ppid-content-icon {
    width: 64px;
    height: 64px;
    background: rgba(1, 82, 102, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ppid-content-icon svg {
    fill: #015266;
}

.ppid-content-title {
    color: #015266;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.ppid-content-desc {
    color: #015266;
    opacity: 0.7;
    margin: 0;
    font-size: 0.95rem;
}

.ppid-content-body {
    padding: 32px;
}

/* Table */
.ppid-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.ppid-table thead th {
    background: rgba(1, 82, 102, 0.05);
    color: #015266;
    font-weight: 700;
    padding: 16px;
    text-align: left;
    border-bottom: 2px solid #015266;
}

.ppid-table tbody td {
    padding: 16px;
    border-bottom: 1px solid rgba(1, 82, 102, 0.1);
}

.ppid-table tbody tr:hover {
    background: rgba(1, 82, 102, 0.02);
}

.ppid-doc-link {
    color: #015266;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.ppid-doc-link:hover {
    color: #a2b910;
}

.ppid-doc-link svg {
    flex-shrink: 0;
}

.ppid-doc-meta {
    display: flex;
    gap: 16px;
    margin-top: 6px;
    font-size: 0.85rem;
    color: #015266;
    opacity: 0.6;
}

.ppid-doc-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.ppid-doc-meta svg {
    flex-shrink: 0;
}

/* Download Button */
.btn-ppid-download {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #015266;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-ppid-download:hover {
    background: #a2b910;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(162, 185, 16, 0.3);
}

.btn-ppid-download svg {
    flex-shrink: 0;
}

/* Empty State */
.ppid-empty {
    padding: 60px 20px !important;
}

.ppid-empty svg {
    fill: #015266;
    opacity: 0.3;
    margin-bottom: 16px;
}

.ppid-empty h4 {
    color: #015266;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.ppid-empty p {
    color: #015266;
    opacity: 0.6;
    margin: 0;
}

/* DataTables Override */
.dataTables_wrapper .dataTables_length select,
.dataTables_wrapper .dataTables_filter input {
    border: 1px solid rgba(1, 82, 102, 0.2);
    border-radius: 6px;
    padding: 6px 12px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background: #015266 !important;
    border-color: #015266 !important;
    color: #fff !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: #a2b910 !important;
    border-color: #a2b910 !important;
    color: #fff !important;
}

/* Responsive */
@media (max-width: 991px) {
    .ppid-hero {
        padding: 60px 0;
    }

    .ppid-hero-title {
        font-size: 2rem;
    }

    .ppid-hero-subtitle {
        font-size: 1rem;
    }

    .ppid-main-container {
        margin-top: 0;
        padding-top: 40px;
    }

    .ppid-content-header {
        padding: 24px;
    }

    .ppid-content-icon {
        width: 56px;
        height: 56px;
    }

    .ppid-content-title {
        font-size: 1.5rem;
    }

    .ppid-content-body {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .ppid-hero-title {
        font-size: 1.75rem;
    }

    .ppid-content-header {
        flex-direction: column;
        text-align: center;
    }

    .ppid-doc-meta {
        flex-direction: column;
        gap: 4px;
    }

    .btn-ppid-download {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}