.sticky-footer {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #0054ac;
    border-top: 1px solid #0054ac;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
    z-index:99;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    text-align:center;
}
.calculator-all {
position: fixed;
    z-index: 99;
    height: fit-content;
    width: 100%;
    bottom: 0;
    text-align: center;
    display: flex;
    justify-content: center;
    justify-items: center;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.calculator-area {
    display: flex;
    gap: 40px;
    align-items: center;
    align-content: stretch;
    flex-wrap: nowrap;
    justify-content: center;
}
input#windowHeight, input#windowWidth  {
    background: white;
    color: black;
}
select#frameColor , select#frameHaight{
    background: white;
    color: black;
}
.sticky-footer button {
    margin-top: 10px;
    height: 10px;
}
.sticky-footer h3 {
    margin: 0 0 10px 0;
    color: white;
}
.sticky-footer label {
    display: block;
    margin-bottom: 10px;
    color: white;
}
p#result {
    color: white;
}

/* Toggle button stilini buraya ekleyin */
button.button-close-calculate {
    position: relative;
    top: 0;
    right: 0;
    z-index:999999;
    border-radius: 50px;
    background: black;
    color: white;
}
@media screen and (max-width: 600px) {.calculator-area{
	flex-direction: column !important;display: flex;
    gap: 40px;
    align-items: stretch;
    justify-content: center;}}
