.calculator-container {
    text-align: center;
    margin-top: 100px;
    overflow: auto;
}

.calculator-table {
    margin: auto;
}

.calculator-display {
    border-radius: 21px;
    border: 5px solid;
    max-height: 65px;
    max-width: 200px;
    font-weight: bold;
    font-size: x-large;
    color: black;
    border-color: var(--primary-colour) !important;;
}

.calculator-button {
    border-radius: 10px;
    border-color: white;
    background: white;
    color: var(--primary-colour) !important;
    width: 35px;
    height: 35px;
    margin: 6px;
    font-weight: bolder;
}

.calculator {
    border: 4px solid;
    background-color: white;
    padding: 23px;
    border-radius: 53px;
    display: inline-block;
    max-width: 250px;
    max-height: 450px;
    border-color: var(--primary-colour);
}

#calculator-area {
    border-radius: 53px;
    position: absolute;
    z-index: 9;
    transition: border-color 0.2s, box-shadow 0.2s;
}

#calculator-area.drag {
    border-color: white;
}

#calculator-area #dragzone {
    width: 100%;
    height: 100%;
    cursor: move;
    z-index: 10;
}
