body {
  align-items: center;
  background-color: #000;
  color: silver;
  display: flex;
  justify-content: center;
}
.bg {
    background-color: #15172b;
    border-radius: 20px;
    box-sizing: border-box;
    padding: 20px;
    max-width: 900px;
    width: 100%;
    margin: 20px;
    text-align: center;
    
}
.title {
  color: #eee;
  font-family: sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  margin-top: 5px;
}
.reguser {
  width: 100%; /* Teljes szélesség elfoglalása */
  border-collapse: collapse; /* Táblázat cellák egyesítése */
}
.reguser th, .reguser td {
  border: 1px solid #000; /* Cellakeretek színe fekete */
  padding: 8px; /* Belső térköz */
  text-align: left; /* Szöveg igazítása balra */
  vertical-align: middle;
  background-color: #CACFD2; /* Cellák háttérszíne */
  color: #000; /* Cellák szövegszíne */
}
.reguser th {
  background-color: #f2f2f2; /* Fejléc háttérszíne */
  color: #000; /* Fejléc szövegszíne */
  text-align: center; /* Fejléc szövegének középre igazítása */
}
.table-container {
  text-align: center;
  margin-top: 20px;
}
.button-container {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.button, .buttonreload {
  background-color: #08d;
  border-radius: 10px;
  border: 0;
  box-sizing: border-box;
  color: lime;
  cursor: pointer;
  font-size: 12px;
  height: 30px;
  margin: 5 10px;
  padding: 0 10px;
}
.button:hover {
  background-color: lime;
  color: black;
}
.form {
  background-color: #15172b;
  border-radius: 20px;
  box-sizing: border-box;
  padding: 20px;
  max-width: 900px; /* MaximĂĄlis szĂŠlessĂŠg */
  width: 100%; /* Teljes szĂŠlessĂŠg elfoglalĂĄsa */
  text-align: left;
}
.input-container {
  height: 50px;
  position: relative;
  width: 100%;
  margin-bottom: 20px;
  padding: 5px;
}
.input {
  background-color: #303245;
  border-radius: 12px;
  border: 0;
  box-sizing: border-box;
  color: #eee;
  font-size: 14px;
  height: 100%;
  outline: 0;
  padding: 4px 20px 0;
  width: 100%;
}
.cut {
  background-color: #15172b;
  border-radius: 10px;
  height: 20px;
  left: 20px;
  position: absolute;
  top: -20px;
  transform: translateY(0);
  transition: transform 200ms;
  width: calc(100% - 40px); /* Teljes szélesség mínusz padding */
}
.cut-short {
  width: calc(100% - 70px); /* Teljes szélesség mínusz padding */
}
.placeholder {
  color: #65657b;
  font-family: sans-serif;
  font-size: 14px;
  left: 20px;
  line-height: 10px;
  pointer-events: none;
  position: absolute;
  transform-origin: 0 25%;
  transition: transform 200ms, color 200ms;
  top: 20px;
}
.input:focus ~ .placeholder,
.input:not(:placeholder-shown) ~ .placeholder {
  transform: translateY(-30px) translateX(5px) scale(0.75);
}
.input:not(:placeholder-shown) ~ .placeholder {
  color: #808097;
}
.input:focus ~ .placeholder {
  color: #dc2f55;
}
.submit {
  background-color: #08d;
  border-radius: 12px;
  border: 0;
  box-sizing: border-box;
  color: #eee;
  cursor: pointer;
  font-size: 16px;
  height: 40px;
  margin-top: 20px;
  width: 200px;
}
.submit:active {
  background-color: #06b;
}
.submit:hover {
  background-color: green;
}
.stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    margin: 30px 0;
    gap: 1rem;
}
.stat-box {
    background-color: #1f1f1f;
    color: #00ff90;
	cursor: pointer;
    border-radius: 12px;
    padding: 20px;
    width: 220px;
    text-align: center;
    box-shadow: 0 0 12px rgba(0, 255, 144, 0.4);
    transition: transform 0.2s ease-in-out;
}
.stat-box:hover {
    transform: scale(1.05);
}
.stat-box i {
    font-size: 30px;
    margin-bottom: 10px;
    display: block;
    color: #00ffcc;
}
.visitors-graph {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    margin: 10px 0;
    gap: 1rem;
}
.chart-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
}
.chart-box {
    flex: 1;
    min-width: 200px;
    max-width: 30%;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.content-section {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(0px);
    transition: transform 1s ease, opacity 1.5s ease, max-height 1.5s ease;
}
.content-section.visible {
    max-height: 1000px; /* vagy valami nagy, amit biztosan nem halad meg */
    opacity: 1;
    transform: translateY(0);
}
#footer {
	font-family: sans-serif;
    text-align: center;
    color: #fff;
	 font-size: 0.8em;
}
#footer .copyright {
    display: block;
    color: #888;
    font-size: 0.7em;
}
