/*
 * SeperoCSV CSS
 */

body {
    background-color: #f0f0f0;
    width: 100vw;
    overflow-x: hidden;
}

a.table-header {
    text-decoration: none;
    color: black;
}

a.table-header:hover {
    color: blue;
}

.rotate-animation {
  animation: rotate 1s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.page-link-disabled {
  background-color: silver;
}
