:root {
    --wagerGreen: #1cad75;
    --backColour: #191919;
    --tabColour: #262626;
    --textColour: #f1f1f1;
    --highlight: #1cad75;
    --borderColour: #333333;
    --boxShadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
    --gold: rgb(180, 140, 58); 
}

.arbCalcCon {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;

}

.arbitrageCalcInfoContainer {
    margin: 10px;
    display: flex;
    padding: 20px;
    border-radius: 10px;
    height: 100%;
    flex-direction: column;
}

h1 {
    text-align: center;
    color: white;
}

.baseholder {
    background-color: #191919 !important;
    color: white;
}

#calculator-container {
    max-width: 1000px;

    margin: 0 auto;


    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.input-field {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

input[type="text"] {

    padding: 10px;
    width: 100%;
    border: 1px solid gray;
    color: white;
    border-radius: 5px;
    background-color: #191919;

    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
}

.checkbox-container {
    display: flex;
    align-items: center;
}

input[type="checkbox"] {
    margin-right: 10px;
}

.arbitrageCalcButton {
    width: fit-content;
    padding: 5px 10px 5px 10px;
    background-color: #1cad75;
    color: white;
    font-weight: 500;
    border: 2px solid #1cad75;
    border-radius: 8px;
    font-size: 1.2em;
    transition: 0.4s;

}

.arbitrageCalcButton:hover {
    transform: translateY(-5px);
}

#result {
    margin-top: 20px;
}

.result-card {

    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.result-card-header {
    font-weight: bold;
    margin-bottom: 8px;
}

.result-profit {
    color: #1cad75;
}

.arbCalcText {
    font-size: medium;
    padding-bottom: 20px;
    padding-top: 20px;
    text-align: center;
}

.calcHeading {
    font-size: 1em !important;
    max-width: 500px;
    margin: 0 auto;
    padding: 5px;
}

.calcHeading h2 {
    font-weight: 600;
    font-size: 0.85em !important;
}

.oddsTypeCon {
    margin-bottom: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.oddsTypeCon select {
    background-color: var(--backColour);
    border: none;
    border-bottom: 1px solid var(--gold);
    color: white;
}


.arbCalcMainContainer {
    display: flex;
    padding: 5px;
    justify-content: center;
    margin-bottom: 25px;
    gap: 20px;
    flex-direction: row;
}

.software-banner-ad {
    width: 300px;
}

.calcMainContainer {
    display: flex;
    flex-direction: column;
    justify-content: left;
    gap: 20px;
}

.calcInnerMainContainer {
    width: 100%;
    border-radius: 10px;
}

.useArbHeading {
    font-size: 0.75em;
}

.arbOddsContainer {
    display: flex;
    flex-direction: row;
    gap: 5px;
}

.arbOddsColumn {
    align-items: center;
    display: flex;
    flex-direction: column;
}

.oddsRowCalc {
    display: flex;
    flex-direction: row;
}

.oddsInputCalc {
    width: 50px;
    color: white;
}

.resultsTabContainer {
    display: flex;

    flex-direction: row;
    justify-content: left;
    height: 100%;
    padding: 10px;
    
    border-radius: 10px;


}

.calcResultsTab,
.resultsInnerContainer {
    height: 100%;
    width: fit-content;
}

.resultsInnerContainer {

    display: flex;
    height: 100%;
    justify-content: space-between;
    flex-direction: column;
    width: 100px;

}

.resultsOdd {

    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.headingResults {
    opacity: 0.9;
}

.resultItemContainer {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.resultsTitle {
    font-weight: 700;
    font-size: 0.75em;
}

.resultsItemValue {
    font-size: 1.3em;
}

.totalResultsItemValue {
    font-size: 1.3em;
}

.resultsInnerTotals {
    display: flex;
    border-radius: 5px;
    gap: 10px;


    height: fit-content;
    flex-direction: row;
    text-align: center;
}

.totalResultsContainer {
    width: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.totalResultsHeading {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-bottom: 1px solid var(--gold);
}

.totalResultsContainer div {
    height: 50%;
}


.calcArbButtonContainer {
    width: 100%;
    display: flex;
    justify-content: center;
}




.informationHeading {
    font-size: 1.5em;
}

.orderListForSteps {
    padding-top: 5px;
    padding-left: 10px;
    width: 90%;
}

.arbitrageInfoDesHeading {
    font-size: 1em;
}

.informationParagrpah {
    border-bottom: 1px solid var(--wagerGreen);
}

.arbitrageHyperLink {
    color: var(--wagerGreen);
    font-weight: 700;
}

.arbButtonResultsContainer {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: left;
    padding: 5px;
    border-radius: 10px;
}

@media (max-width: 1000px) {
    .arbCalcCon {
        flex-direction: column;
        justify-content: center;
        width: 100%;
    }

    .arbCalcMainContainer {
        max-width: 600px;
    }

    input[type="text"] {
        max-width: 300px;
        width: 300px;
    }

    .calcMainContainer {
        justify-content: center;
    }

    .arbButtonResultsContainer {
        max-width: 300px;

    }
    
}

@media (max-width: 800px) {
    .software-banner-ad {
        width: 250px;
    }
    input[type="text"] {
        max-width: 250px;
    }

    .arbButtonResultsContainer {
        gap: 5px;
        flex-direction: column-reverse;
        padding: 0px;
    }
}

@media (max-width: 600px) {
    .arbCalcCon {
        flex-direction: column;
        justify-content: center;
        width: 100%;
    }

    .arbCalcMainContainer {
        max-width: 600px;
    }

    input[type="text"] {
        max-width: 300px;

    }

    .calcMainContainer {
        justify-content: center;
    }

    .arbButtonResultsContainer {
        max-width: 300px;

    }

    .totalResultsItemValue {
        font-size: 1em;
    }

    .arbitrageCalcButton {
        font-size: 1em;
    }
    .software-banner-ad {
        width: 200px;
    }
    input[type="text"] {
        max-width: 200px;
    }
}

@media (max-width: 600px) {
    .software-banner-ad {
        width: 200px;
    }
    input[type="text"] {
        max-width: 150px;
    }
    
    .arbCalcMainContainer {
        gap: 2px;
    }
}

@media (max-width: 600px) {
    .software-banner-ad {
        width: 300px;
    }
    input[type="text"] {
        max-width: 300px;
    }
    .arbCalcMainContainer {
        gap: 15px;
        flex-direction: column;
    }
}
