/* General Body Text */
body {
    font-family: "Roboto", sans-serif; /* Secondary Typeface */
    font-weight: 400;
    font-size: 16px;
    color: #000000; /* Black */
    background-color: #F8F9FA; /* Light Grey */
}

/* Headlines */
h1, h2 {
    font-family: "Poppins", sans-serif; /* Primary Typeface */
    font-weight: 700; /* Bold */
    font-size: 36px;
    color: #3478F7; /* Whisker Blue */
    margin-top: 40px;
    margin-bottom: 20px;
}

/* Subheadings */
h3, h4 {
    font-family: "Roboto", sans-serif;
    font-weight: 500; /* Medium */
    font-size: 24px;
    color: #6C757D; /* Wheel Grey */
}

/* Paragraphs & Lists */
p, ul, ol {
    margin-bottom: 16px;
}

/* Small Text and Captions */
small, .caption {
    font-family: "Roboto", sans-serif;
    font-weight: 300; /* Light */
    font-size: 14px;
    color: #6C757D; /* Wheel Grey */
}

/* Code Blocks */
.md-typeset pre {
    font-family: "Source Code Pro", monospace; /* Code Font */
    font-size: 14px;
    color: #6C757D; /* Wheel Grey */
    background-color: #F8F9FA; /* Light Grey */
    border: 1px solid #E0E0E0;
    border-radius: 4px;
    padding: 10px;
}

/* Buttons (Call-to-Action) */
.md-button {
    font-family: "Poppins", sans-serif;
    font-weight: 700; /* Bold */
    font-size: 16px;
    background-color: #FF9F43; /* Paw Print Orange */
    color: #FFFFFF; /* White */
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
}

.md-button:hover {
    background-color: #28C76F; /* Grass Green */
    color: #FFFFFF;
}

/* Enhance table styling */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 16px;
    text-align: left;
}

table th, table td {
    border: 1px solid #dddddd;
    padding: 10px;
}

table th {
    background-color: #3478F7; /* Whisker Blue */
    color: #FFFFFF;
    font-weight: bold;
}

table tr:nth-child(even) {
    background-color: #f2f2f2;
}

/* Image Styling */
.md-typeset img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.05);
}