.calculator {
    display: inline-block;
    border: none;
    border-radius: 10px;
    padding-top: 2.5px;
    padding-left: 2.5px;
    padding-right: 2.5px;
    padding-bottom: 2.5px;
    background-color: #acacac;
    font-family: monospace;
}
.calculator_screen {
    color: #f1f1f1 !important;
    background-color: #006c04 !important;
    border: none !important;
    border-radius: 5px !important;
    height: 60px !important;
    width: 220px !important;
    margin-top: 2.5px !important;
    margin-left: 2.5px !important;
    margin-right: 2.5px !important;
    margin-bottom: 2.5px !important;
    font-size: 50px !important;
    text-align: right !important;
    display: inline-block !important;
    font-family: monospace !important;
}
.calculator_keys table {
    border-collapse: collapse;
}
.calcbutton {
    margin-bottom: 8px;
    margin-right: 4px;
    font-size: 30px;
    border-radius: 5px;
    border: none;
    height: 50px;
    width: 50px;
    margin-top: 2.5px;
    margin-left: 2.5px;
    margin-right: 2.5px;
    margin-bottom: 2.5px;
    background-color: rgb(62, 62, 62);
    color: white;
    font-family: monospace;
}
.calcbutton:hover {
    background-color: rgb(127, 127, 127);
}
.calcbutton:active {
    background-color: rgb(100, 100, 100);
}
#enter {
    background-color: rgb(224, 131, 0);
    font-family: monospace;
    color: black;
}
#enter:hover {
    background-color: rgb(255, 150, 30);
}
#enter:active {
    background-color: rgb(255, 127.5, 0);
}
.AC {
    background-color: rgb(255, 71, 71);
    height: 25px;
    font-family: monospace;
    font-size: 14px;
    width: 220px;
    border-radius: 5px;
    margin-top: 2.5px;
    margin-left: 2.5px;
    margin-right: 2.5px;
    margin-bottom: 2.5px;
}
.AC:hover {
    background-color: rgb(235, 0, 0);
}
.AC:active {
    background-color: rgb(255, 0, 0);
}
.op {
    color: rgb(0, 200, 255);
    font-family: monospace;
}
.opop {
    color: rgb(0, 200, 255);
    font-family: monospace;
}
