/* Alapstílusok */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f0f4f8; /* világos, természetes háttér */
    color: #2e3a2f; /* sötétzöldes szöveg */
    margin: 0;
    padding: 20px;
}

/* Táblázatok stílusa */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(46, 58, 47, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

th, td {
    padding: 2px 5px;
    text-align: left;
}

th {
    background-color: #a3c9a8; /* világos zöld */
    color: #1e2f1e;
    font-weight: 600;
    border-bottom: 2px solid #7fa87f;

}

td {
    border-bottom: 1px solid #d6e3d6;
}

/* Sorok hover effekt */
.dataframe tbody tr:hover {
    background-color: #e6f0e6;
}

#table_flg tbody td:hover{
    background-color: #e6f0e6;
}

/* Diagram konténer */
.chart-container {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(46, 58, 47, 0.15);
    margin-bottom: 30px;
}

/* Címek */
h1, h2, h3 {
    color: #3a5a40;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Linkek */
a {
    color: #4a7c59;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2e4a31;
}

/* Gombok (ha vannak) */
button {
    background-color: #7fa87f;
    color: #ffffff;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #5f7a5f;
}

.flag1 {
  margin-left: 10%;
  margin-right: 10%;
  margin-top: 10%;
  margin-bottom: 10%;
  width : 70%;
  height : 70%;
  border: solid 1px
}
