.allsizes {
    border: 1px solid lightgray;
}

@media screen and (width <= 400px) {
    col.xsmall {
        visibility: collapse;
    }
}

@media screen and (401px <= width) {
    col.xsmall {
        border: 1px solid lightgray;
    }
}

@media screen and (width <= 800px) {
    col.small {
        visibility: collapse;
    }
}

@media screen and (801px <= width) {
    col.small {
        border: 1px solid lightgray;
    }
}

@media screen and (width <= 1200px) {
    col.medium {
        visibility: collapse;
    }
}

@media screen and (1201px <= width) {
    col.medium {
        border: 1px solid lightgray;
    }
}

#top-button {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: green;
    color: white;
    cursor: pointer;
    padding: 10px;
    border-radius: 10px;
    font-size: 16px;
}

#top-button:hover {
    background-color: #555;
}

.shadow {
    box-shadow: 10px 11px 5px 0 rgb(74 73 74 / 1);
}

.tab {
    overflow: hidden;
    background-color: darkgrey;
    width: 100%;
    position: relative;
    height: 50px;
}

.tab button {
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    transition: 0.3s;
    font-size: 17px;
    display: block;
    height: 50px;
    border-radius: 10px 10px 0 0;
}

.tab button:hover {
    background-color: #ddd;
}

.tabcontent {
    background-color: lightgrey;
    display: none;
}

.tablinks {
    background-color: darkgrey;
    color: lightgrey;
}

.tablinksselected {
    background-color: lightgrey;
    color: green;
}

.options {
    padding: 5px;
}

.error {
    color: red;
}

.success {
    color: green;
}

.debug {
    color: purple;
}

.entryContent {
    background-color: white;
    padding: 5px;
}

input[type="text"]::-ms-clear {
    display: none;
}

.pagination button {
    color: black;
    background-color: transparent;
    float: left;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 5px;
}

.pagination button.active {
    background-color: green;
    color: white;
    border-radius: 5px;
}

.pagination button:hover:not(.active) {
    background-color: darkgray;
    border-radius: 5px;
}

* {
    box-sizing: border-box;
}

.img-magnifier-container {
    position: relative;
}

.img-magnifier-glass {
    position: absolute;
    border: 3px solid #000;
    border-radius: 50%;
    cursor: none;
    width: 200px;
    height: 200px;
}
