/* IboSoft - 1.2 */
body {
    font-family: Arial, sans-serif;
    margin: 15px;
    padding-bottom: -55px;
    background-color: #ffffff;
}

p {
    color: rgb(10,10,10);
    margin: 4px;
    font-size: 16px;
}

li {
    color: rgb(10,10,10);
}

th {
    color: rgb(10,10,10);
}

hr {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 6px;
}

a {
    color: #0000ee;
    text-decoration: underline;
}

a:hover {
    color: red;
    text-decoration: underline;
}

.calculatorFrame, .calculatorWideFrame {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #888888;
    border-radius: 25px;
    background-color: #efefef;
}
.calculatorFrame div, .calculatorWideFrame div {
    margin-bottom: 0px;
}

.calculateButton {
    width: calc(100% - 10px);
    padding: 10px;
    margin: 5px;
    box-sizing: border-box;
    text-align: center;
    background-color: #dedede;
    border-radius: 8px;
    border-width: 1px;
}

.calculateButton:hover {
    border-color: white;
    color: white;
    background-color: #cdcdcd;
}

select{
    border: 1px solid #888888;
    background-color: #dedede;
    color: rgb(10,10,10);
    border-radius: 3px;
}

input{
    border: 1px solid #888888;
    background-color: #fefefe;
    color: rgb(10,10,10);
    border-radius: 3px;
}

input::placeholder {
    color: rgb(80,80,80);
}

/* ############################# */

.calculatorFrame input, .calculatorWideFrame input {
    width: calc(100% - 10px);
    padding: 10px;
    margin: 5px;
    box-sizing: border-box;
}

.calculatorFrame select, .calculatorWideFrame select {
    width: calc(100% - 10px);
    padding: 10px;
    margin: 5px;
    box-sizing: border-box;
}

.calculatorFrame .innerDiv, .calculatorWideFrame .innerDiv {
    width: calc(100% - 10px);
    padding: 0px;
    margin: 5px;
    box-sizing: border-box;
    display: flex; /* Div icerigi yatay esneklik */
}

.calculatorFlex {
    display: flex;
}

.calculatorFlex input{
    width: 50%;
}

.calculatorFlex select{
    width: 50%;
}

.calculatorFlex .innerDiv{
    width: 50%;
}

/* ############################# */

.mainHeaderText {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

.inputHeaderText {
    font-size: 18px;
    font-weight: bold;
}

/* .inputNotesText */

.resultsHeaderText {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

.resultsNotesText {
    text-align: center;
}

.resultSubHeaders {
    font-weight: bold;
}

/* ############################# */

/* .bottomNotes */

.bottomNotesHeaderText {  
    font-weight: bold;
    margin-bottom: 6px;
}

/* .bottomNotesText */
    
.versionText {
    text-align: right;
    margin-top: 10px;
    margin-bottom: 0px;
}



/* For Wide Calculators */
@media screen and (min-width: 895px) {
    .calculatorWideFrame {
    max-width: 810px;
    }
    #row1 {
        display: flex;
    }
    #column1 {
        max-width: 400px;
    }
    #column2 {
        max-width: 400px;
        margin-left: 15px;
        margin-right: -10px;
    }    
}

/* ############################# */