/* Hide URL slug field in dashboard properties modal */
.ant-form-item:has(label[title="URL slug"]) {
    display: none !important;
}

/* Alternative selectors */
label[title="URL slug"] {
    display: none !important;
}

label[for="slug"] {
    display: none !important;
}

#slug {
    display: none !important;
}

.ant-form-item:has(#slug) {
    display: none !important;
}

.ant-col:has(label[title="URL slug"]) {
    display: none !important;
}

.ant-col:has(label[for="slug"]) {
    display: none !important;
}

.ant-col:has(#slug) {
    display: none !important;
}
