/* admin.css */
[class^="field-"]  label {
    font-weight: bold !important;
}

[class^="field-"]  p {
    font-weight: bold !important;
    color: blue;
    font-size: large;
}


@media (prefers-color-scheme: dark) {
    /* Dark mode styles */
    fieldset.module.aligned.djn-module {
        background-color: #333; /* Dark background color */
    }

    /* Customize label color within fieldset */
    fieldset.module.aligned.djn-module label {
        color: #fff; /* White label text color in dark mode */
    }

    [class^="field-"]  label {
    font-weight: bold !important;
}

    [class^="field-"]  p {
        font-weight: bold !important;
        color: red;
        font-size: large;
    }

    /* Additional styles for other elements in dark mode */
    /* Add more dark theme styles here */
}
