/* Reset podstawowych stylów */
body, h1, h2, p, table, td, kbd {
    margin: 0;
    padding: 0;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #22EDF4;
}

/* Tło strony */
body {
    background-color: #201044;
    display: flex;
    justify-content: center;
    align-items: top;
    height: 100vh;
    text-align: center;
}

/* Kontener główny */
.container {
    max-width: 1000px; /* Increase the max-width */
    width: 100%;
    padding: 20px;
}

/* Sekcja z logo */
.logo-section {
    margin-bottom: 2rem;
}

.logo { 
    animation: 0
    background: transparent;
    border: 0px solid rgba(0, 0, 0, 0.12);
    border-radius: 0px;
    display:block;
    margin: 0;
    height: auto;
}

.logo-text {
    font-size: 1.5rem;
    margin-top: 10px;
    color: #22EDF4;
    font-weight: 300;
    text-align: left;
}

/* Tytuł i opis */
.title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #22EDF4;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap; /* Prevent text from wrapping */
}

.description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #22EDF4;
    line-height: 1.6;
}

/* Tabelka */
table.card_inner {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
}

kbd.card_tag {
    color: #22EDF4;
    font-size: 1rem;
    font-family: 'Courier New', Courier, monospace;
}

kbd.card_tag_inner {
    color: #ffffff;
    font-size: 1rem;
    font-family: 'Courier New', Courier, monospace;
}

.card_link {
    color: #22EDF4;
    text-decoration: none;
}

.card_link:hover {
    text-decoration: underline;
}

/* Efekt neonowy dla tekstu */
.title, .logo-text {
    text-shadow: 0 0 5px #22EDF4, 0 0 10px #22EDF4, 0 0 20px #22EDF4;
}

/* Card styling */
.card {
    border: 1px solid #22EDF4;
    padding: 20px;
    border-radius: 10px;
    background-color: rgba(34, 237, 244, 0.1);
    margin-top: 20px;
    text-align: left;
}

.card_tag {
    color: #22EDF4;
    font-size: 1rem;
    font-family: 'Courier New', Courier, monospace;
    display: block;
    margin-bottom: 10px;
}

.card_tag_inner {
    color: #ffffff;
    font-size: 1rem;
    font-family: 'Courier New', Courier, monospace;
}

.card_link {
    color: #22EDF4;
    text-decoration: none;
}

.card_link:hover {
    text-decoration: underline;
}

/* Table styling */
table.card_inner {
    width: 100%;
    border-collapse: collapse;
    margin: 10px 0;
}

table.card_inner td {
    padding: 5px 0;
}