* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-family: Roboto sans-serif;
    font-size: 14px;
}

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

button.loading {
    svg {
        animation-name: spin;
        animation-duration: 1s;
        animation-timing-function: linear;
        animation-iteration-count: infinite;
    }
}

.tab-link {
    width: unset;
    border-bottom: 2px solid transparent;
    color: rgba(0,0,0,0.7);
    font-weight: 500;
    text-decoration: none;
}

.tab-active {
    border-bottom: 2px solid #1976d2;
    color: #1976d2;
}

.mud-card-hover-border:hover {
    box-shadow: 0 0 5px 3px #1976d2;
    transition: all 0.3s ease;
}

@media screen and (min-width: 1200px) {
    .tabs {
        display: flex;
        justify-content: flex-start;
    }
}