.indexbox {
    position: relative;
    width: 700px;
    height: 700px;
    background: rgba(255, 255, 255, 0.2);
    padding: 50px 40px;
    border-radius: 10px;
    margin: 20px;
}
.loginbox1 {
    position: relative;
    width: auto;
    height: 560px;
    background: rgb(255, 255, 255);
    border-radius: 8px;
}
.indexTextBox {
    position: relative;
    width: auto;
    height: 560px;
    background: #fff;
    border-radius: 10px;
}
.codebox1 {
    position: relative;
    width: auto;
    height: 560px;
    background: rgb(255, 255, 255);
    border-radius: 8px;
}
.codebox1 form pre, .codebox1 form pre code {
    height: 550px;
    border-radius: 6px;
}
/* ============================================== */

.win {
  position: absolute;
  top: 310px; /* Kezdeti pozíció */
  left: 375px; /* Kezdeti pozíció */
  width: auto;
  height: auto;
  cursor: pointer;
  z-index: 999;
}
.win-header {
    background-color: #353535;
    padding: 8px;
    cursor: move; /* Mozgatáshoz */
    display: flex;
    justify-content: center;
    border-radius: 10px 10px 0 0;
}  
.win-header .lin {
    height: 4px;
    width: 50px;
    border-radius: 2px;
    background: white;
}
.calculator {
  width: 250px;
  height: 350px;
  border-radius: 10px;
  background-color: #000000;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.screen {
  padding: 10px;
  background-color: #000000;
  text-align: right;
}

.screen input {
  width: 100%;
  border: none;
  outline: none;
  font-size: 20px;
  padding: 5px;
  color: #fff;
  border-radius: 10px;
}

.buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.buttons button {
  border: none;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  outline: none;
  cursor: pointer;
  padding: 0; /* Módosítás: padding 0-ra állítása */
  font-size: 20px;
  background-color: #555555;
  color: #fff;
  margin-top: 5px;
  margin-left: 5px;
  display: flex; /* Módosítás: flexbox elrendezés */
  justify-content: center; /* Módosítás: szöveg középre igazítása */
  align-items: center; /* Módosítás: szöveg középre igazítása */
}

.buttons .white {
    background-color: #bdbdbd;
}
.buttons .orange {
    background-color: #ff9d1d;
}
.buttons .nulla {
    position: absolute;
    margin-top: 225px;
    width: 115px;
    border-radius: 25px;
}
  

.buttons button:hover {
    filter: brightness(1.3); /* A szín 10%-kal világosabb lesz, mint az eredeti */
}
  
  