
table {
  border: 1px solid #303e47;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
 
}

table caption {
  font-size: 1.5em;
  margin: .5em 0 .75em;
}

table tr {
  
  border: 1px solid #303e47;
  padding: .35em;
}

table th,
table td {
 border: 1px solid #1d252a;
 white-space: nowrap;
}

table th {
  font-size: .85em;
  letter-spacing: .1em;
  text-transform: uppercase;
  background-color: #ecca17;
  color: #696B6E;
}





/* Beállítás azokra a td-kre, amik a tartalomhoz igazodjanak */
.auto-width {
  table-layout: auto; /* Az oszlopokat a tartalom szerint méretezi */
  white-space: nowrap; /* Ne törje meg a szöveget */
  padding: .625em;
}


@media screen and (max-width: 600px) {
  table {
    border: 0;
  }

  table caption {
    font-size: 1.3em;
  }
  
  table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  
  table tr {
    border-bottom: 3px solid #ddd;
    display: block;
    margin-bottom: .625em;
  }
  
  table td {
    border-bottom: 1px solid #ddd;
    display: block;
    font-size: .8em;
    text-align: right;
  }
  

  table td::before {
    /*
    * aria-label has no advantage, it won't be read inside a table
    content: attr(aria-label);
    */
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
	
  
  }
  
  table td:last-child {
    border-bottom: 0;
  }
}





















/* Container for the main button */
        .dropdown {
            position: relative;
            display: inline-block;
			
        }

        /* Main button style */
        .main-button {
            padding: 5px 20px;
            background-color: #ecca17; /* Kért sárga szín */
            color: white;
            border: 2px solid #ecca17;
            border-radius: 4px;
            font-size: 11px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        /* Hover effect for the main button */
        .main-button:hover {
            background-color: #d0a015;
            border-color: #d0a015;
        }

        /* The dropdown content (hidden by default) */
        .dropdown-content {
            display: none;
            position: absolute;
            background-color: #f9f9f9;
            min-width: 200px;
            box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
            border-radius: 8px;
            transition: all 0.3s ease;
            opacity: 0;
            pointer-events: none;
            z-index: 9999;
        }

        /* Button styles inside the dropdown */
        .dropdown-content button {
            color: black;
            padding: 10px 15px;
            text-align: left;
            background-color: #f9f9f9;
            border: none;
            width: 100%;
            border-bottom: 1px solid #ddd;
            border-radius: 8px;
            font-size: 14px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }

        /* Last button in dropdown has no border */
        .dropdown-content button:last-child {
            border-bottom: none;
        }

        /* Icon style inside buttons */
        .dropdown-content button i {
            margin-right: 10px; /* Space between icon and text */
			padding-right: 20px;
        }

        /* Change button color on hover */
        .dropdown-content button:hover {
            background-color: #ecca17;
            color: white;
        }

        /* Show the dropdown content when hovering over the dropdown container */
        .dropdown:hover .dropdown-content {
            display: block;
            opacity: 1;
            pointer-events: all;
        }

        /* Optional: Change main button color on hover */
        .dropdown:hover .main-button {
            background-color: #d0a015;
            border-color: #d0a015;
        }
		
		
		
		
		
		
		
		
		
		
		
		





	.pagination {
    display: flex;
    justify-content: center; /* Középre igazítja a tartalmat */
    align-items: center; /* Függőlegesen is középre igazítja */
    margin-top: 20px;
}

.pagination a {
    padding: 5px 10px;
    margin: 0 5px;
    text-decoration: none;
    color: #000;
   
    border-radius: 5px;
	background-color: #ecca17;
}

.pagination a:hover {
    background-color: #d0a015;
}

.pagination .current-page {
    padding: 5px 10px;
    margin: 0 5px;
    background-color: #ecca17; /* Kiemelt háttérszín az aktuális oldalnak */
    color: white;
  
}
