* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

.main-wrapper {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.header__logo img {
    max-width: 100%;
    height: auto;
}

.header__logo img {
    max-width: 150px; /* Logo maksimum genişlik */
}

.header__foreign_currency {
    display: flex;
    align-items: center;
}

.header__foreign_currency .item {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    border-right: 1px solid #ececec;
    padding-right: 1rem;
    margin-right: 1rem;
}

.header__foreign_currency .item:last-child {
    padding-right: 0;
    margin-right: 0;
    border-right: none;
}

.header__foreign_currency .item .sub {
    font-size: 1rem;
    color: grey;
}

.header__foreign_currency .item .main {
    font-size: 1.40rem;
    color: black;
}

.buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.input-area {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.input-label {
    font-weight: bold;
}

.input-area__single-input {
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 0.25rem;
    font-size: 1rem;
}

#input-area__fiyatlar {
    font-size: 0.7rem; /* İlk input alanının yazı boyutu küçültüldü */
}



/* Butonlar  */

.buttons {
    display: flex;
    gap: 1rem;
}


button {
    border: none;
    border-radius: 0.5rem;
    padding: 1rem 2rem;
}

button:hover {
    cursor: pointer;
}


.button-green {
    background-color: #64ca61;
}

.button-blue {
    background-color: rgb(86, 114, 192);
}

.button-grey {
    background-color: #ececee;
}

/* Sonuçlar */
.results {
    width: 100%;
    max-width: 800px;
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.result-box {
    width: 100%;
    padding: 1rem;
    border-radius: 0.5rem;
    background-color: #f1f1f1;
}

.result-title {
    font-weight: bold;
    margin-bottom: 0.5rem;
}