/* styles.css */

/* Resetowanie domyślnych marginesów i paddingów */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
}

/* Kontener strony */
.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

/* Nagłówek */
h1 {
    font-family: 'Georgia', serif;
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
}

/* Listy rozwijane */
.dropdowns {
    margin: 20px 0;
}

select {
    padding: 10px;
    font-size: 1em;
    margin: 0 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

/* Sekcja porównania */
.comparison {
    display: flex;
    justify-content: space-around;
    width: 100%;
    margin-top: 20px;
}

/* Kafelek produktu */
.product-card {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 45%;
    text-align: left;
}

.product-card img {
    max-width: 100%;
    border-radius: 10px;
}

.product-card h2 {
    font-size: 1.5em;
    color: #333;
    margin-top: 10px;
}

.product-card p {
    font-size: 1em;
    color: #666;
    margin: 10px 0;
    line-height: 1.6; /* Zwiększ odstęp między wierszami */
}

.product-card .price {
    font-size: 1.2em;
    color: #e67e22;
    font-weight: bold;
}




/* Styl dla tabeli */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

table th, table td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
}

table th {
    background-color: #f4f4f4;
    font-weight: bold;
}

table tr:nth-child(even) {
    background-color: #f9f9f9;
}

table tr:hover {
    background-color: #f1f1f1;
}