﻿
.tabLink {
    background-color: #eee;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 5px 15px;
    transition: 0.3s;
    position: sticky;
    z-index: 1;
    top: 0;
}

.tabLink.active {
    background-color: #ccc;
}

/* Change background color of buttons on hover */
.tabLink:hover {
    background-color: #ddd;
}

