@import "./fonts.css";
@import "./variables.css";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
    font-size: 17px;
    color: #43423D;
}

body {
    background-color: var(--background-grey);
    padding: 20px;
}

.container {
    max-width: 790px;
    margin: 0 auto;
}

h1 {
    font-size: 50px;
    font-family: 'Cooper', serif;
    text-align: center;
    margin-bottom: 40px;
}

h2, h3, p {
    margin-bottom: 20px;
}

ol, ul {
    padding-left: 40px;
    margin-bottom: 20px;
}

ul:last-child {
    margin-bottom: 0;
}

a {
    color: var(--hartfelt-red);
}

/* Table wrapper for horizontal scrolling */
.table-wrapper {
    overflow-x: auto;
    margin-bottom: 20px;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}

table {
    margin-bottom: 20px;
    border-collapse: collapse;
    width: 100%;
    min-width: 600px; /* Ensure table has minimum width for content */
}

table, th, td {
    border: 1px solid #DDDDDD;
    font-size: 15px;
    vertical-align: top;
}

table li {
    font-size: 15px;
}

th, td {
    padding: 12px;
    text-align: left;
    font-size: 15px;
}

th {
    font-weight: bold;
    font-size: 15px;
}
