.tabs {
    list-style: none; /* Remove default list styles */
    padding: 0;      /* Remove default padding */
    margin: 0;       /* Remove default margin */
    display: flex;    /* Use flexbox for horizontal alignment */
    justify-content: flex-end; /* Align items to the right */
}

.tabs li {
    margin-left: 20px; /* Space between tabs */
}

.tab-link {
    text-decoration: none; /* Remove underline from links */
    padding: 10px 15px; /* Padding inside tabs */
    background-color: #f0f0f0; /* Tab background color */
    border-radius: 5px; /* Rounded corners */
    color: #0072b1; /* Text color #333 */
    font-size: 18px; /* Increase font size */
    font-weight: bold; /* Make text bold */
}

.tab-link:hover {
    background-color: #e0e0e0; /* Hover effect */
}
