hr {
    margin: 15px !important;
}

h2 {
    font-size: 1.5em !important;
}

ul {
    list-style: none;
    padding-left: 1.5rem !important;
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
}

ul li {
    position: relative !important;
    padding-left: 1.25rem !important;
    margin-bottom: 0.42rem !important;
    font-size: 1rem !important;
    color: #4b5563;
    /* Tailwind's gray-700 */
}

.custom-list::before {
    content: "•";
    position: absolute;
    left: 0;
    font-size: 1.2rem !important;
    color: #6b6b6b;
    /* Tailwind's indigo-500 */
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem;
    color: #374151;
    /* gray-700 */
    margin: 2rem 0;
}

thead {
    background-color: #f9fafb;
    /* gray-50 */
    border-bottom: 2px solid #e5e7eb;
    /* gray-200 */
}

thead th {
    text-align: left;
    padding: 0.75rem 1rem;
    font-weight: 600;
}

tbody tr {
    border-bottom: 1px solid #e5e7eb;
    transition: background-color 0.2s ease;
}

tbody tr:nth-child(even) {
    background-color: #f9fafb;
    /* gray-50 */
}

tbody tr:hover {
    background-color: #f3f4f6;
    /* gray-100 */
}

td {
    padding: 0.75rem 1rem;
}