/* Hide timezone warning icons and messages in Unfold admin */

/* Hide the red warning triangle icon next to datetime fields */
.datetimeshortcuts svg.text-red-600,
.datetimeshortcuts .text-red-600 {
    display: none !important;
}

/* Hide the timezone warning message/note */
.timezonewarning,
[class*="timezonewarning"] {
    display: none !important;
}

/* Hide any paragraph containing server time warning */
p.text-gray-500:has-text("server time"),
p.text-sm:has-text("ahead of server time"),
p.text-sm:has-text("behind server time") {
    display: none !important;
}

/* Alternative: hide all red icons in datetime shortcuts */
.datetimeshortcuts svg[fill="currentColor"].text-red-600 {
    display: none !important;
}

/* Hide the container that shows "Note: You are X hours ahead/behind" */
.datetimeshortcuts + p.text-sm.text-gray-500 {
    display: none !important;
}
