body {
    background-color: #1e1e2e;
    color: #cdd6f4;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
}

/* Headings */
h1 {
    color: #b4befe;
    text-align: center;
}

h2 {
    color: #cba6f7;
    margin-top: 0;
}

/* Each food entry container */
.foods {
    display: flex;
    flex-direction: row;      /* image + text side by side */
    align-items: flex-start;  /* top-align text with image */
    gap: 20px;                /* space between image and text */
    margin: 20px;
}

/* Food images */
.foods img {
    width: 300px;
    height: auto;             /* keep natural aspect ratio */
    border: solid #f5e0dc 1px;
    flex-shrink: 0;           /* prevent shrinking */
}

/* Text content next to image */
.text {
    flex: 1;                  /* take remaining space */
}

/* Lists */
ul {
    margin: 10px 0;
    padding-left: 20px;
}

li {
    margin-bottom: 6px;
    line-height: 1.5;
}

/* Divider */
hr {
    margin: 20px 0;
    border: none;
    border-top: 2px solid #45475a;
}

.audiobutton {
    background-color: #89dceb; /* bg-ctp-sapphire-950 */
    display: flex;                             /* flex-row implies flex container */
    flex-direction: row;                       /* flex-row */
    flex-basis: 0.25rem;                       /* basis-1 (in Tailwind = 0.25rem = 4px) */
    justify-content: center;                   /* justify-center */
    margin-left: auto;                         /* mx-auto = auto horizontal margins */
    margin-right: auto;
    padding-left: 0.5rem;                      /* px-2 = 0.5rem left/right */
    padding-right: 0.5rem;
    border-radius: 0.25rem;                    /* rounded = 4px radius */
}

/* hover state */
.audiobutton:hover {
    background-color: #89dceb;
    opacity: 75%; /* hover:bg-ctp-sapphire-700 */
}

h3 {
    color: #89b4fa;
}
