/* Target the specific form fields by label text */
.amelia-app-booking .el-form-item:has(label:contains("Course Status")),
.amelia-app-booking .el-form-item:has(label:contains("Certificate URL")) {
    display: none !important;
}

/* Alternative: Hide by field wrapper */
div[class*="amelia"] .el-form-item:nth-of-type(5),
div[class*="amelia"] .el-form-item:nth-of-type(6) {
    display: none !important;
}





/* Hide Exam Status and Certificate URL fields by their specific IDs */
body.page-id-18490 #am-cf-15,
body.page-id-18490 #am-cf-23,
body.page-id-18490 #am-cf-25 {
    display: none !important;
}

/* Hide their parent containers */
body.page-id-18490 div[id="am-cf-15"],
body.page-id-18490 div[id="am-cf-23"],
body.page-id-18490 div[id="am-cf-25"] {
    display: none !important;
}

/* Target by the el-form-item class that contains these IDs */
body.page-id-18490 .el-form-item:has(#am-cf-15),
body.page-id-18490 .el-form-item:has(#am-cf-23),
body.page-id-18490 .el-form-item:has(#am-cf-25) {
    display: none !important;
}

/* More specific: target the div wrapper with the full class */
body.page-id-18490 .am-fs__info-form .el-form-item.am-cf-width-50[id^="am-cf-"] {
    display: none !important;
}

/* Alternative: Hide Fields 4, 5, 6, 7 (Course Status and Certificate URL) */
body.page-id-18490 .am-fs__info-form > div:nth-child(5),
body.page-id-18490 .am-fs__info-form > div:nth-child(6),
body.page-id-18490 .am-fs__info-form > div:nth-child(7),
body.page-id-18490 .am-fs__info-form > div:nth-child(8) {
    display: none !important;
}





@media (min-width: 768px) {
    /* Hide only the SVG icon inside the button */
    .side_menu_button .qode-side-menu-button-svg,
    .side_menu_button a {
        opacity: 0 !important;
        visibility: hidden !important;
    }
    
    /* Keep the button wrapper to maintain spacing */
    .side_menu_button_wrapper,
    .side_menu_button {
        pointer-events: none !important;
    }
}













/* Method 1: Updated page ID (21903 instead of 18490) */
body.page-id-21903 .am-fs__info-form > div:nth-child(5),
body.page-id-21903 .am-fs__info-form > div:nth-child(6) {
  display: none !important;
}

/* Method 2: Target by ID (more reliable) */
body.page-id-21903 #am-cf-15,
body.page-id-21903 #am-cf-23,
body.page-id-21903 #am-cf-25 {
  display: none !important;
}

body.page-id-21903 .el-form-item:has(#am-cf-15),
body.page-id-21903 .el-form-item:has(#am-cf-23),
body.page-id-21903 .el-form-item:has(#am-cf-25) {
  display: none !important;
}

/* Method 3: Universal solution (works on any page) */
.am-fs__info-form [id="am-cf-15"],
.am-fs__info-form [id="am-cf-23"], 
.am-fs__info-form [id="am-cf-25"] {
  display: none !important;
}

.el-form-item:has(select[id="am-cf-15"]),
.el-form-item:has(input[id="am-cf-23"]),
.el-form-item:has(input[id="am-cf-25"]) {
  display: none !important;
}











