.md-header {
    /* font-size: 4rem; */
    font-family: 'Trebuchet MS', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.button-container {
    display: flex;
    gap: 1rem;
    justify-content: center; /* Center the buttons */
}

.minimalist-btn {
    background-color: #F8F9FA; /* Light grey */
    color: #007BFF; /* Blue */
    border: 1px solid #007BFF;
    padding: 0.25rem 0.5rem; /* Reduced padding */
    border-radius: 0.25rem;
    text-decoration: none;
    font-size: 0.875rem; /* Reduced font size */
    transition: background-color 0.3s, color 0.3s;
    min-width: 50%; /* Set a minimum width */
    text-align: center; /* Center the text */
}

.minimalist-btn:hover {
    background-color: #f0f0f0;
    color: #FFF;
}


.table-full-width {
    width: 100%;
    border-collapse: collapse; /* Optional: to remove gaps between table cells */
}

.table-full-width th, .table-full-width td {
    border: 1px solid #ddd; /* Optional: to add borders to table cells */
    padding: 8px; /* Optional: to add padding to table cells */
    text-align: center; /* Center the text */
}

.table-full-width td:first-child {
    font-weight: bold; /* Make the first column bold */
}