:root {
    --theme-gradient-main: linear-gradient(90deg, #003366 0%, #0055a4 100%);
    --theme-blue-dark: #003366;
    --theme-blue-light: #0055a4;
    --sidenav-width: 15rem;
    --topnav-height: 5rem;
}

* {
    transition: all 0.5s ease;
}

body {
    margin: 0;
    padding: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    font-weight: 600;
    line-height: 1.2;
}

#jumbotron h1{
    font-size:2rem;
}


.container {
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding: 0 3rem;
}

main {

    --top-padding: calc(var(--topnav-height) + 1rem);
    min-height: 100vh;
    padding-top: var(--top-padding);
    margin-left: calc(var(--sidenav-width) + 1rem);
    margin-bottom: 1rem;
}

button:disabled {
    cursor: not-allowed;
}

#footer {
    background: var(--theme-gradient-main);
    color: white;
    position: relative;
    padding: 0 2rem;
    z-index: 9999;
}

#table {
    max-height: calc(100vh - 16rem);
    overflow-y: scroll;
}

#loader-wrapper {
    min-height: 10rem;
    height: 100%;
    width: 100%;
    background: #ffffff8c;
    position: absolute;
    top: 0;
    left: 0;
    display: grid;
    place-content: center;
}

#spinner {
    width: 48px;
    height: 48px;
    border: 5px solid var(--theme-blue-dark);
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

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

#info-more{
    position:fixed;
    bottom:40px;
    right:50px;
    z-index:1000;
}

#info-more p{
    margin-bottom: 2px;
}

#table-top-filters {
    /* width: 100; */
    width: auto;
    padding: 1rem 0;
}

#table-top-filters label {
    display: block;
    margin-bottom: 0.5 ;
}

#table-top-filters .filter {
    max-width: 25%;
    display: inline-block;
    margin-right: 1rem;
}

#table-top-filters select {
    padding: 0.5rem;
    width: 100%;
}

.card {
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid #b6b6b6;
    box-shadow: 0 4px 8px #00000010;
    padding: 20px;
    max-width: 300px;
    margin: 10px;
    position: relative;
}

.card .card-body {
    padding: 0;
}

.card:hover {
    box-shadow: 0 4px 8px #00000057;
}

.card-title {
    font-size: 18px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 8px;
}
