    /* ========== GRID VIEW STYLES ========== */
    .pg-wrapper * {
        box-sizing: border-box;
    }
    
    .pg-wrapper {
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    }
    
    /* Header */
    .pg-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 15px;
        margin-bottom: 25px;
        padding-bottom: 20px;
        border-bottom: 2px solid #e5e7eb;
    }
    
    .pg-header-left h3 {
        margin: 0 0 8px 0;
        font-size: 24px;
        font-weight: 700;
        color: #111827;
    }
    
    .pg-breadcrumb {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        font-size: 14px;
        color: #6b7280;
    }
    
    .pg-breadcrumb li a {
        color: #4f46e5;
        text-decoration: none;
    }
    
    .pg-breadcrumb li a:hover {
        text-decoration: underline;
    }
    
    .pg-breadcrumb .active {
        color: #9ca3af;
    }
    
    .pg-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .pg-btn {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 8px 16px;
        border-radius: 8px;
        font-size: 13px;
        font-weight: 600;
        text-decoration: none;
        border: 1px solid transparent;
        cursor: pointer;
        transition: all 0.2s;
        white-space: nowrap;
    }
    
    .pg-btn-create {
        background: #fff;
        color: #1d670e;
        border-color: #1d670e;
    }
    
    .pg-btn-create:hover {
        background: rgb(107, 157, 98);
        text-decoration: none;
    }
    
    .pg-btn-approve {
        background: #fff;
        color: #059669;
        border-color: #a7f3d0;
    }
    
    .pg-btn-approve:hover {
        background: #ecfdf5;
        text-decoration: none;
    }
    
    .pg-btn-disapprove {
        background: #fff;
        color: #d97706;
        border-color: #fde68a;
    }
    
    .pg-btn-disapprove:hover {
        background: #fffbeb;
        text-decoration: none;
    }
    
    .pg-btn-danger {
        background: #fff;
        color: #dc2626;
        border-color: #fecaca;
    }
    
    .pg-btn-danger:hover {
        background: #fef2f2;
        text-decoration: none;
    }
    
    /* Alert */
    .pg-alert {
        padding: 14px 18px;
        border-radius: 10px;
        margin-bottom: 20px;
        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .pg-alert-success {
        background: #d1fae5;
        color: #065f46;
        border: 1px solid #a7f3d0;
    }
    
    .pg-alert-danger {
        background: #fee2e2;
        color: #991b1b;
        border: 1px solid #fecaca;
    }
    
    /* Select All */
    .pg-select-bar {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 12px 16px;
        background: #eff6ff;
        border: 1px solid #bfdbfe;
        border-radius: 10px;
        margin-bottom: 20px;
        font-size: 14px;
        color: #1e40af;
    }
    
    .pg-select-bar input[type="checkbox"] {
        width: 18px;
        height: 18px;
        cursor: pointer;
    }
    
    /* Grid */
    .pg-grid {
        display: grid !important;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)) !important;
        gap: 20px !important;
        width: 100% !important;
    }
    
    @media (max-width: 640px) {
        .pg-grid {
            grid-template-columns: 1fr !important;
        }
        .pg-header {
            flex-direction: column;
        }
    }
    
    @media (min-width: 641px) and (max-width: 1024px) {
        .pg-grid {
            grid-template-columns: repeat(2, 1fr) !important;
        }
    }
    
    /* Card */
    .pg-card {
        background: #ffffff !important;
        border-radius: 14px !important;
        border: 1px solid #e5e7eb !important;
        box-shadow: 0 1px 3px rgba(0,0,0,0.08) !important;
        transition: all 0.25s ease !important;
        position: relative !important;
        overflow: hidden !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    .pg-card:hover {
        transform: translateY(-4px) !important;
        box-shadow: 0 12px 28px rgba(0,0,0,0.12) !important;
        border-color: #c7c7c7 !important;
    }
    
    .pg-card-check {
        position: absolute;
        top: 16px;
        left: 16px;
        z-index: 10;
    }
    
    .pg-card-check input {
        width: 20px;
        height: 20px;
        cursor: pointer;
    }
    
    .pg-card-body {
        padding: 24px 20px 16px 52px;
        flex: 1;
    }
    
    .pg-card-icon {
        width: 50px;
        height: 50px;
        border-radius: 12px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 20px;
        margin-bottom: 16px;
    }
    
    .pg-lang-tag {
        display: inline-block;
        font-size: 10px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.8px;
        padding: 3px 10px;
        border-radius: 6px;
        margin-bottom: 6px;
    }
    
    .pg-lang-en {
        background: #e0e7ff;
        color: #3730a3;
    }
    
    .pg-lang-bn {
        background: #fce7f3;
        color: #9d174d;
    }
    
    .pg-name {
        font-size: 17px;
        font-weight: 700;
        color: #1f2937;
        margin: 0 0 4px 0;
        line-height: 1.4;
        word-break: break-word;
    }
    
    .pg-name-bn {
        font-size: 16px;
        font-weight: 600;
        color: #4b5563;
        margin: 0 0 14px 0;
        line-height: 1.4;
        word-break: break-word;
    }
    
    .pg-status {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 6px 14px;
        border-radius: 50px;
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.4px;
    }
    
    .pg-status-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        display: inline-block;
    }
    
    .pg-status-1, .pg-status-active, .pg-status-approved {
        background: #d1fae5;
        color: #065f46;
    }
    
    .pg-status-1 .pg-status-dot, .pg-status-active .pg-status-dot, .pg-status-approved .pg-status-dot {
        background: #10b981;
    }
    
    .pg-status-0, .pg-status-inactive, .pg-status-disapproved {
        background: #fee2e2;
        color: #991b1b;
    }
    
    .pg-status-0 .pg-status-dot, .pg-status-inactive .pg-status-dot, .pg-status-disapproved .pg-status-dot {
        background: #ef4444;
    }
    
    .pg-status-pending {
        background: #fef3c7;
        color: #92400e;
    }
    
    .pg-status-pending .pg-status-dot {
        background: #f59e0b;
    }
    
    .pg-card-footer {
        padding: 14px 20px;
        background: #f9fafb;
        border-top: 1px solid #f3f4f6;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .pg-id {
        font-size: 12px;
        color: #9ca3af;
        font-weight: 500;
    }
    
    .pg-card-actions {
        display: flex;
        gap: 8px;
    }
    
    .pg-icon-btn {
        width: 34px;
        height: 34px;
        border-radius: 8px;
        border: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 14px;
        text-decoration: none;
        transition: all 0.2s;
    }
    
    .pg-icon-btn:hover {
        transform: scale(1.05);
    }
    
    .pg-btn-edit {
        background: #fef3c7;
        color: #b45309;
    }
    
    .pg-btn-edit:hover {
        background: #fbbf24;
        color: #fff;
        text-decoration: none;
    }
    
    .pg-btn-delete {
        background: #fee2e2;
        color: #dc2626;
    }
    
    .pg-btn-delete:hover {
        background: #ef4444;
        color: #fff;
    }
    
    /* Empty State */
    .pg-empty {
        grid-column: 1 / -1;
        text-align: center;
        padding: 60px 20px;
        background: #fff;
        border-radius: 14px;
        border: 2px dashed #e5e7eb;
    }
    
    .pg-empty-icon {
        width: 70px;
        height: 70px;
        background: #f3f4f6;
        border-radius: 18px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        color: #9ca3af;
        margin-bottom: 16px;
    }
    
    .pg-empty h4 {
        margin: 0 0 8px 0;
        color: #374151;
        font-size: 18px;
    }
    
    .pg-empty p {
        margin: 0 0 20px 0;
        color: #6b7280;
        font-size: 14px;
    }
/* ========== CREATE FORM STYLES ========== */
    .pg-wrapper * {
        box-sizing: border-box;
    }
    
    .pg-wrapper {
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    }
    
    /* Header */
    .pg-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 15px;
        margin-bottom: 25px;
        padding-bottom: 20px;
        border-bottom: 2px solid #e5e7eb;
    }
    
    .pg-header-left h3 {
        margin: 0 0 8px 0;
        font-size: 24px;
        font-weight: 700;
        color: #111827;
    }
    
    .pg-breadcrumb {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        font-size: 14px;
        color: #6b7280;
    }
    
    .pg-breadcrumb li a {
        color: #4f46e5;
        text-decoration: none;
    }
    
    .pg-breadcrumb li a:hover {
        text-decoration: underline;
    }
    
    .pg-breadcrumb .active {
        color: #9ca3af;
    }
    
    .pg-btn-back {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 20px;
        border-radius: 10px;
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        background: #fff;
        color: #4b5563;
        border: 1px solid #d1d5db;
        transition: all 0.2s;
    }
    
    .pg-btn-back:hover {
        background: #f9fafb;
        color: #1f2937;
        text-decoration: none;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }
    
    /* Alerts */
    .pg-alert {
        padding: 14px 18px;
        border-radius: 10px;
        margin-bottom: 20px;
        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .pg-alert-success {
        background: #d1fae5;
        color: #065f46;
        border: 1px solid #a7f3d0;
    }
    
    .pg-alert-danger {
        background: #fee2e2;
        color: #991b1b;
        border: 1px solid #fecaca;
    }
    
    .pg-alert-danger ul {
        margin: 8px 0 0 0;
        padding-left: 18px;
    }
    
    .pg-alert-danger li {
        margin-bottom: 4px;
    }
    
    /* Card */
    .pg-card {
        background: #ffffff !important;
        border-radius: 16px !important;
        border: 1px solid #e5e7eb !important;
        box-shadow: 0 1px 3px rgba(0,0,0,0.08) !important;
        overflow: hidden !important;
    }
    
    .pg-card-header {
        padding: 24px 28px;
        background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
        border-bottom: 1px solid #e2e8f0;
    }
    
    .pg-card-header h4 {
        margin: 0;
        font-size: 18px;
        font-weight: 700;
        color: #1e293b;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .pg-card-header p {
        margin: 6px 0 0 0;
        font-size: 13px;
        color: #64748b;
    }
    
    .pg-card-body {
        padding: 32px 28px;
    }
    
    /* Form */
    .pg-form {
        max-width: 700px;
    }
    
    .pg-form-group {
        margin-bottom: 24px;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    
    @media (min-width: 768px) {
        .pg-form-group {
            flex-direction: row;
            align-items: flex-start;
            gap: 20px;
        }
    }
    
    .pg-form-label {
        font-size: 14px;
        font-weight: 600;
        color: #374151;
        min-width: 200px;
        padding-top: 10px;
    }
    
    .pg-form-label .required {
        color: #dc2626;
        margin-left: 2px;
    }
    
    .pg-form-input-wrapper {
        flex: 1;
        min-width: 0;
    }
    
    .pg-form-input {
        width: 100%;
        padding: 12px 16px;
        font-size: 15px;
        border: 2px solid #e5e7eb;
        border-radius: 10px;
        background: #fff;
        color: #1f2937;
        transition: all 0.2s;
        outline: none;
    }
    
    .pg-form-input:focus {
        border-color: #4f46e5;
        box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
    }
    
    .pg-form-input::placeholder {
        color: #9ca3af;
    }
    
    .pg-form-hint {
        font-size: 12px;
        color: #6b7280;
        margin-top: 6px;
    }
    
    /* Buttons */
    .pg-form-actions {
        display: flex;
        gap: 12px;
        padding-top: 8px;
    }
    
    @media (min-width: 768px) {
        .pg-form-actions {
            padding-left: 220px;
        }
    }
    
    .pg-btn-submit {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 12px 28px;
        border-radius: 10px;
        font-size: 15px;
        font-weight: 600;
        text-decoration: none;
        border: none;
        cursor: pointer;
        background: #059669;
        color: #fff;
        transition: all 0.2s;
    }
    
    .pg-btn-submit:hover {
        background: #047857;
        transform: translateY(-1px);
        box-shadow: 0 8px 20px rgba(5, 150, 105, 0.25);
    }
    
    .pg-btn-cancel {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 12px 28px;
        border-radius: 10px;
        font-size: 15px;
        font-weight: 600;
        text-decoration: none;
        border: 1px solid #d1d5db;
        cursor: pointer;
        background: #fff;
        color: #4b5563;
        transition: all 0.2s;
    }
    
    .pg-btn-cancel:hover {
        background: #f9fafb;
        color: #1f2937;
        text-decoration: none;
    }
    
    /* Language badge inside input */
    .pg-input-wrap {
        position: relative;
    }
    
    .pg-lang-badge {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 10px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        padding: 3px 10px;
        border-radius: 6px;
        pointer-events: none;
    }
    
    .pg-lang-badge-en {
        background: #e0e7ff;
        color: #3730a3;
    }
    
    .pg-lang-badge-bn {
        background: #fce7f3;
        color: #9d174d;
    }
    
    .pg-form-input.with-badge {
        padding-right: 80px;
    }

    .pg-table-wrapper {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    overflow: hidden;
}

.pg-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 14px;
}

.pg-table thead tr {
        background: linear-gradient(135deg, #d0cfdf 0%, #e7e7e7 100%);
    color: #000;
}

.pg-table thead th {
    padding: 16px 18px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    text-align: left;
    border: none;
    white-space: nowrap;
}

.pg-table thead th:first-child {
    border-radius: 16px 0 0 0;
    width: 40px;
    text-align: center;
}

.pg-table thead th:last-child {
    border-radius: 0 16px 0 0;
    text-align: center;
}

.pg-table thead th .pg-table-check {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #fff;
}

.pg-table tbody tr {
    transition: all 0.2s ease;
    border-bottom: 1px solid #f3f4f6;
}

.pg-table tbody tr:last-child td:first-child {
    border-radius: 0 0 0 16px;
}

.pg-table tbody tr:last-child td:last-child {
    border-radius: 0 0 16px 0;
}

.pg-table tbody tr:hover {
    background: #f8fafc;
    transform: scale(1.002);
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    z-index: 2;
    position: relative;
}

.pg-table tbody td {
    padding: 16px 18px;
    color: #374151;
    vertical-align: middle;
    border-bottom: 1px solid #f3f4f6;
}

.pg-table tbody td:first-child {
    text-align: center;
    width: 40px;
}

.pg-table tbody td:last-child {
    text-align: center;
    white-space: nowrap;
}

.pg-table .pg-row-check {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #4f46e5;
}

/* Office Name */
.pg-table .office-name {
    font-weight: 700;
    color: #1f2937;
    font-size: 14px;
}

.pg-table .office-name-bn {
    font-size: 13px;
    color: #6b7280;
    margin-top: 2px;
}

/* Address block */
.pg-table .office-address {
    font-size: 13px;
    color: #4b5563;
    line-height: 1.6;
}

.pg-table .office-address small {
    color: #9ca3af;
    font-size: 11px;
}

/* Code badge */
.pg-table .office-code {
    display: inline-block;
    background: #e0e7ff;
    color: #3730a3;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    font-family: 'SF Mono', monospace;
    letter-spacing: 0.5px;
}

/* Contact info */
.pg-table .office-phone {
    font-size: 13px;
    color: #059669;
    font-weight: 600;
}

.pg-table .office-email {
    font-size: 12px;
    color: #4f46e5;
}

/* Status badges in table */
.pg-table .pg-status {
    font-size: 11px;
    padding: 5px 12px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.pg-table .pg-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
}

.pg-table .pg-status-1 {
    background: #d1fae5;
    color: #065f46;
}

.pg-table .pg-status-1 .pg-status-dot {
    background: #10b981;
}

.pg-table .pg-status-0 {
    background: #fee2e2;
    color: #991b1b;
}

.pg-table .pg-status-0 .pg-status-dot {
    background: #ef4444;
}

.pg-table .pg-status-pending {
    background: #fef3c7;
    color: #92400e;
}

.pg-table .pg-status-pending .pg-status-dot {
    background: #f59e0b;
}

/* Action buttons in table */
.pg-table .pg-icon-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s;
    margin: 0 2px;
}

.pg-table .pg-btn-edit {
    background: #fef3c7;
    color: #b45309;
}

.pg-table .pg-btn-edit:hover {
    background: #fbbf24;
    color: #fff;
}

.pg-table .pg-btn-delete {
    background: #fee2e2;
    color: #dc2626;
}

.pg-table .pg-btn-delete:hover {
    background: #ef4444;
    color: #fff;
}

/* Empty state inside table */
.pg-table-empty {
    text-align: center;
    padding: 60px 20px;
}

.pg-table-empty-icon {
    width: 70px;
    height: 70px;
    background: #f3f4f6;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #9ca3af;
    margin-bottom: 16px;
}

.pg-table-empty h4 {
    margin: 0 0 8px 0;
    color: #374151;
    font-size: 18px;
}

.pg-table-empty p {
    margin: 0 0 20px 0;
    color: #6b7280;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
    .pg-table-wrapper {
        overflow-x: auto;
    }
    .pg-table {
        min-width: 1000px;
    }
}