body {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    min-height: 100vh;

}

body::-webkit-scrollbar {
    display: none;
}

button {
    background-color: #0073e6;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

button:hover {
    background-color: #0055a5;
    transform: scale(1.05);
}

.banner {
    background-color: #0073e6;
    color: white;
    padding: 20px;
    text-align: center;
    position: relative;
}

.banner h1 {
    margin: 0;
    font-size: 3em;
    font-weight: bold;
}

.banner p {
    margin: 5px 0;
    font-size: 1.2em;
}

.banner img {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    height: 80px;
}

.content {
    padding: 20px;
    text-align: center;
}

#history {
    margin-top: 20px;
    list-style: none;
    padding: 0;
    margin-bottom: 50vh;
}

.green {
    color: green;
}

.red {
    color: red;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.inf {
    font-size: 0.35cm;
    margin-top: 0.3%;

    color: grey;
}

.history {
    margin-left: 30%;
    margin-right: 30%;
}

.ammount {
    text-align: center;
    font-size: 35px;
    line-height: 0cm;


}

label {
    line-height: 1.6em;
}

input {
    margin-bottom: 0.7%;
}



.twobuttons {
    display: inline-block;
}



.footer {
    background-color: #0073e6;
    color: white;
    padding: 10px;
    text-align: center;
    position: fixed;
    width: 100%;
    margin-top: 20px;
    bottom: 0;
    box-shadow: 0px -2px 20px rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.footer p {
    margin: 5px 0;
    font-size: 1.0em;
}

/* Pliki Cookies Akceptacja Menu */
#cookie-info {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: white;
    padding: 10px;
    text-align: center;
    box-shadow: 0px -2px 20px rgba(0, 0, 0, 0.35);
    z-index: 1000;
}

#cookie-info a {
    color: #1682e7;
    text-decoration: none;
    margin-left: 10px;
}

#cookie-info button {
    background-color: #0073e6;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    margin-left: 10px;
}

#cookie-info button:hover {
    background-color: #0073e9;
}