@font-face {
    font-family: 'PTMono';
    font-style: normal;
    font-weight: 400;
    src: url('/static/media/PTMono-Regular.295a1f32faf05a5784d8.ttf') format('truetype');
}

body {
    background: #141d2b;
    font-family: 'PTMono', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    color: #ffffff;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
}
.hidden {
    display: none;
}

.show-more-btn {
    background: none;
    color: #9fef00;
    border: none;
    cursor: pointer;
    text-align: left;
    padding: 0;
    font-size: 1em;
}
#root {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
    padding: 20px;
}
header {
    text-align: center;
    width: 100%;
    margin-bottom: 20px;
}
h1 {
    font-size: 2em;
    color: #9fef00;
}
.results-block {
    background: #2a3240;
    padding: 20px;
    margin: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    box-sizing: border-box;
    flex: 1 1 460px;
    max-width: 460px;
}
h2 {
    color: #9fef00;
    font-size: 1.5em;
    margin-top: 0;
}
table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed; /* Fix the table layout to control column width */

}
th {
    padding: 12px;
    background-color: #3a4a5e;
}
tr {
    border-bottom: 1px solid #2a4a00;
}
tr:last-child {
    border-bottom: none;
}
td {
    padding: 12px;
    text-align: left; /* Align text to the left */
    word-wrap: break-word;
}

.status {
    width: 20%; /* Adjust the width as needed */
    text-align: right; /* Align status to the right */
}
td:not(.status) {
    font-weight: bold;
}
p {
    font-size: 1em;
    color: #b0bec5;
}
.progress-bar {
    background-color: #444;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 10px;
}
.progress-bar-inner {
    height: 20px;
    background-color: #9fef00;
    width: 0%;
    text-align: center;
    color: black;
    line-height: 20px;
}

@media (max-width: 700px) {
    #root {
        flex-direction: column;
        align-items: center;
    }
    .results-block {
        max-width: 100%;
        width: 100%;
        flex: 1 1 100%;
    }
    .hidden {
        display: none;
    }
    .show-more-btn {
        background: none;
        color: #9fef00;
        border: none;
        cursor: pointer;
        text-align: left;
        padding: 0;
        font-size: 1em;
    }
    .status {
        display: inline-block;
        width: auto;
        text-align: right; /* Align status to the right for mobile */
        float: right; /* Float status to the right */
    }

}

