form#contact-pro-import-articles-import-form{
   .form-managed-file  .form-checkbox, input[name='files_remove_button'] {
        display: none !important;
        }
}

div:has(>.hidden-vocab){
    display: none !important;
}

form.custom-permissions-config-form h2.section-heading {
    margin-bottom: 2rem;
}
form.custom-permissions-config-form tr:has(.js-rid-authenticated:checked) .js-real-checkbox {
    display: none;
}

 .show{
    display: block !important;
 }

 .hide{
    display: none !important;
 }

  .report-container{
                
     
        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }        
        
        .header {     
           
            padding: 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        /* .header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
        } */
         .btn-refresh {
            background: #ffbe3c;
            border-radius: 0.5rem;
            padding: 5px 10px;
            border: 0px;
        }

        .header-content {
            position: relative;
            z-index: 1;
        }

        .header h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;            
        }

        .header .subtitle {
            font-size: 1.1rem;
            opacity: 0.9;
            font-weight: 400;
        }

        .success-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 20px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }

        .content {
            padding: 40px;
        }

        .status-message {         
            color: #000000;
            padding: 25px;
            border-radius: 12px;
            margin-bottom: 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .status-message::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            color: #000000;
            padding: 25px;
            border-radius: 12px;
            margin-bottom: 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .status-message::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            animation: shimmer 2s infinite;
        }

        @keyframes shimmer {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        .status-message h2 {
            font-size: 1.4rem;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .status-message p {
            font-size: 1rem;
            opacity: 0.95;
        }

        .table-container {
            background: #f8fafc;
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 30px;
            border: 1px solid #e2e8f0;
        }

        .table-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .table-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: #1e293b;
        }

        .file-count {
            border: 1px solid #ffbe3c;
            color: #333333;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
        }

        .files-table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }

        .files-table th {
            background: #000000b0;
            color: #fff !important;
            padding: 15px;
            text-align: left;
            font-weight: 600;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .files-table td {
            padding: 15px;
            border-bottom: 1px solid #e2e8f0;
            font-size: 0.95rem;
        }

        .files-table tr:last-child td {
            border-bottom: none;
        }

        .files-table tr:hover {
            background-color: #f1f5f9;
            transition: background-color 0.2s ease;
        }

        .status-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #fbbf24;
            color: #92400e;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .status-badge::before {
            content: '';
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #f59e0b;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        .completion-message {
            background: #f0f9ff;
            border: 1px solid #bae6fd;
            border-left: 4px solid #0ea5e9;
            color: #0c4a6e;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 30px;
        }

        .completion-message h3 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .completion-message p {
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .actions {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #e2e8f0;
        }

        .btn-home {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
            color: white;
            padding: 14px 28px;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(79, 70, 229, 0.4);
        }

        .btn-home:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(79, 70, 229, 0.6);
            text-decoration: none;
            color: white;
        }

        .btn-home:active {
            transform: translateY(0);
        }

        @media (max-width: 768px) {
            .container {
                margin: 10px;
                border-radius: 12px;
            }

            .header {
                padding: 30px 20px;
            }

            .header h1 {
                font-size: 2rem;
            }

            .content {
                padding: 20px;
            }

            .files-table {
                font-size: 0.85rem;
            }

            .files-table th,
            .files-table td {
                padding: 10px;
            }
        }

}


input[type="file"] {
    display: none;
}


.form-type-managed-file > label{
    display: inline-block;
    padding: 9px 24px;
    background: var(--goldenrod);
    color: #000;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease;
    border: none;
    text-align: center;
    opacity: 1;
}

.form-type-managed-file > label:hover {
    background-color: rgb(147, 209, 23);
    transform: translateY(-2px);
}

.form-type-managed-file > label:active {
    transform: translateY(0);
}

.view-node-btn{
    display: inline-block;
    padding: 3px 24px;
    background: var(--goldenrod);
    color: #000;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease;
    border: none;
    text-align: center;
    opacity: 1;
    margin-left: 1rem;
    text-decoration: none;
    &:hover{
        color: #000;
        background: #ffbb32;
    }
}