/*
 * Keep large card/section icons visually consistent across custom Django Admin
 * pages. Some templates used h-11/w-11 while others used h-10/w-10, which made
 * the same icon family look uneven.
 */
[class~="rounded-default"][class~="items-center"][class~="justify-center"][class~="h-11"][class~="w-11"],
[class~="rounded-default"][class~="items-center"][class~="justify-center"][class~="h-10"][class~="w-10"] {
    height: 2.5rem !important;
    min-height: 2.5rem !important;
    min-width: 2.5rem !important;
    width: 2.5rem !important;
}

[class~="rounded-default"][class~="items-center"][class~="justify-center"][class~="h-11"][class~="w-11"] > .material-symbols-outlined,
[class~="rounded-default"][class~="items-center"][class~="justify-center"][class~="h-10"][class~="w-10"] > .material-symbols-outlined {
    font-size: 1.5rem !important;
    line-height: 1 !important;
}
