body{
    margin:0;
    padding:0;
    font-family: Arial, Helvetica, sans-serif;
    background-color:#F5F5DC;
    display:flex;
    flex-wrap: wrap;
    justify-content:center;
    align-items:center;
    height:100vh;
}

.fokontener{
    position: relative;
    width:calc(33% - 300px);
    min-width:400px;
    height: 80vh;
    margin: 0 50px;
    display:flex;
    flex-wrap: wrap;
    align-content: space-around;
    justify-content:center;
    background-color: white;
    box-shadow: 0px 10px 25px black ;
    border-radius: 15px;
    text-align:center;
}
.fokontener >*{
    width: 100%;
    padding: 40px;
}
.fokontener *{
    display: flex;
    flex-wrap: wrap;
    align-content: space-around;/*függőleges elrendezés*/
    justify-content: center;/*vízszintes elrendezés*/
}
.row{
    flex-wrap: nowrap; /* egymás mellé helyezze*/ 
}
.row-listazas{
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}
.row-listazas:first-child{
    justify-content: left;
}
.row-listazas:last-child{
    justify-content: right;
}
.col{
    width: 100px;
    display: flex;
    
}

h2{
    color:#7CB342;
    margin-bottom:20px;
}

h3{
    color:#444;
    margin-bottom:20px;
}

.input_csoport{
    display:flex;
    flex-direction:column;
    gap:10px;
    margin-bottom:20px;
}

input{
    padding:10px;
    border-radius:8px;
    border:1px solid #ccc;
    font-size:14px;
}

input:focus{
    outline:none;
    border:1px solid #7CB342;
}

.button{
    background:#7CB342;
    color:white;
    padding:12px;
    border-radius:10px;
    cursor:pointer;
    font-weight:bold;
    transition:0.2s;
}

.button:hover{
    background:#689F38;
    transform:scale(1.03);
}

label{
    text-align:left;
    font-size:14px;
}

#szamla{
    margin-top:20px;
    background:#F5F5DC;
    padding:15px;
    border-radius:10px;
    min-height:50px;
    text-align:left;
    font-size:14px;
}
#button-szerkeszt{
    display: none;
}
.tetel_div{
    display: flex;
    justify-content: space-around;
    width: 100%;
}
.tetelek_container{
    width: 100%;
    height: 40vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: space-between;

}
#tetelek{
    width: 100%;
}
.szamla_torzs{
    height: 30vh;
}