
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #121212;
    color: #e0e0e0;
    margin: 40px;
    text-align: center;
}

h1 {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
}

.title{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px; 
    flex-direction: row-reverse;
}

.title svg{
    width: 58px;
    height: 58px;
}

strong{
    color: #4cb9ff;
}

#urlField{
    margin: 0;
    margin-bottom: 40px;
}

table {
    width: 80%;
    margin: 20px auto;
    border-collapse: collapse;
    background: #1e1e1e;
    border-radius: 8px;
    overflow: hidden;    
}

.indexbreakrow{ 
   display: none;
}

th {
    background-color: #333;
    color: #fff;
    padding: 12px;
    text-align: left;
}

td {
    padding: 10px;
    border-bottom: 1px solid #444;
    text-align: left;
}

tr:hover {
    background-color: #292929;
}

hr{
   display: none;
}

a {
    color: #4cb9ff;
    text-decoration: none;
    font-weight: 400;
}

a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 850px){
    tr th:nth-child(n+4), tr td:nth-child(n+4) {
        display: none;
    }

    table{
        width: 100%
    }
}

@media screen and (max-width: 600px){
    tr th:nth-child(n+3), tr td:nth-child(n+3) {
        display: none;
    }

    table{
        width: 100%;    
    }
}

