/* deceased.css */

/* General styling for the deceased information container */
.mt-2 {
    margin-top: 0.5rem; /* Equivalent to Tailwind's mt-2 */
}

.p-3 {
    padding: 0.75rem; /* Equivalent to Tailwind's p-3 */
}

.rounded-md {
    border-radius: 0.375rem; /* Equivalent to Tailwind's rounded-md */
}

.bg-black {
    background-color: #000; /* Equivalent to Tailwind's bg-black */
}

.text-white {
    color: #fff; /* Equivalent to Tailwind's text-white */
}

/* Styling for the text inside the container */
.text-sm {
    font-size: 0.875rem; /* Equivalent to Tailwind's text-sm */
    line-height: 1.25rem; /* Equivalent to Tailwind's text-sm */
}

/* Optional: Styling for the spans inside the text */
span[itemprop="birthDate"],
span[itemprop="deathDate"] {
    font-weight: bold; /* Makes the dates bold */
}