 /* Use namespaced classes to avoid conflicts */
        .notif-header {
            background-color: #0e6e56;
            color: white;
            padding: 2rem 0;
            margin-bottom: 2rem;
        }
        
        .notif-header h6 a {
            color:#e74c3c;
            text-decoration: underline;
        }
        
        .notif-header h6 span {
            color: white;
        }
        
        .notif-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .notif-pdf-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            transition: transform 0.2s;
            height: 100%;
        }
        
        .notif-pdf-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
        }
        
        .notif-pdf-icon {
            height: 120px;
            background-color: #e5e5e5;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 50px;
            color: #e74c3c;
        }
        
        .notif-pdf-details {
            padding: 15px;
        }
        
        .notif-pdf-name {
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 10px;
            color: #333;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .notif-pdf-meta {
            display: flex;
            justify-content: space-between;
            font-size: 12px;
            color: #666;
            margin-bottom: 15px;
        }
        
        .notif-pdf-date {
            display: flex;
            align-items: center;
        }
        
        .notif-pdf-date i {
            margin-right: 5px;
        }
        
        .notif-pdf-category {
            background-color: #0e6e56;
            color: white;
            padding: 3px 8px;
            border-radius: 15px;
            font-size: 11px;
        }
        
        .notif-pdf-actions {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }
        
        .notif-btn {
            padding: 8px 0;
            border: none;
            border-radius: 4px;
            color: white;
            font-weight: bold;
            text-decoration: none;
            text-align: center;
            cursor: pointer;
            transition: background-color 0.2s;
            font-size: 13px;
        }
        
        .notif-btn-view {
            background-color: #0e6e56;
        }
        
        .notif-btn-view:hover {
            background-color: #3a5ba0;
            color: white;
        }
        
        .notif-btn-download {
            background-color: #2ecc71;
        }
        
        .notif-btn-download:hover {
            background-color: #27ae60;
            color: white;
        }
        
        .notif-btn i {
            margin-right: 5px;
        }
        
        .notif-no-documents {
            grid-column: 1 / -1;
            text-align: center;
            padding: 50px 0;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .notif-no-documents i {
            font-size: 60px;
            color: #ccc;
            margin-bottom: 20px;
        }
        
        /* Responsive grid using Bootstrap breakpoints but with our own classes */
        .notif-pdf-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        
        @media (max-width: 992px) {
            .notif-pdf-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .notif-pdf-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 480px) {
            .notif-pdf-grid {
                grid-template-columns: repeat(1, 1fr);
            }
        }