body {
    font-family: 'rawline', sans-serif;
}

main { 
    padding: 16px 
}

.simple_page li {
    list-style: disc;
}

.simple_page a {
    color: rgb(28, 28, 207);
}

.v2-filter-btn {
    display: flex;
    height: 36px;
    width: 150px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-style: none;
    padding: 0px 12px;
    font-weight: 500;
    background-color: #5283c3;
    color: white;
}

.loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top-color: #000;
    animation: spin 1s ease-in-out infinite;
}

.errorlist {
    background-color: #f15232;
    color: #fff;
    padding: 6px;
    width: auto;
    font-size: 12px;
}
.errorlist:empty {
    background-color: transparent;
    padding: 0;
}
/* CSS FOR FADE-IN FADE-OUT EFFECT WHEN USER FILTER LIST */
.list-enter-active,
.list-leave-active {
  transition: all 0.5s ease;
}
.list-enter-from,
.list-leave-to {
  opacity: 0;
  transform: translateX(30px);
}

.skeleton-loader {
    background-color: #f0f0f0;
    margin-bottom: 10px;
    animation: pulse 0.5s infinite alternate ease-in-out;
}

@keyframes pulse {
    0% {
        opacity: 0.6;
    }
    100% {
        opacity: 1;
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
