/* Centering the container */
#content {
    display: flex;
    flex-direction: column;
    align-items: center;    /* Centers the table horizontally */
    justify-content: center; /* Centers the content vertically if height is set */
    width: 90%;             /* Prevents the table from hitting the screen edges */
    margin: 0 auto;         /* Backup for horizontal centering */
    padding: 20px;
}

/* Your Table Styles */
table {
    width: 100%;
    max-width: 800px;       /* Keeps the table from getting too wide on desktop */
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    margin-top: 20px;
}

th {
    background-color: #f2f2f2;
    text-align: left;
    padding: 12px;
    border-bottom: 2px solid #ddd;
}

td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

tr:hover {
    background-color: #f5f5f5;
}

/* Your Tag Styles */
.tag {
    background-color: #e1ecf4;
    color: #39739d;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 0.85em;
    margin-right: 4px;
    border: 1px solid #cedae4;
}