/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */
::-moz-selection {
    /* background: #b3d4fc; */
    background: transparent;
    text-shadow: none;
}

::selection {
    /* background: #b3d4fc; */
    background: transparent;
    text-shadow: none;
}
body {
    user-select: none;
    background: #828282;
}

.main-table {
    display: flex;
    justify-content: center;
    border-spacing: 0px;
}

.button-table {
    display: flex;
    justify-content: center;
    border-spacing: 0px;
}

.display-tr {
    height: 75px;
    background: #333333;
}

.panel-tr {
    height: 300px;
    background: #4F4F4F;
}

.display-td { width: 258px; }

.panel-td { width: 326px; }

.display-padding-td { width: 121px; }

.panel-padding-td { width: 87px; }

#display {
    border-width: 0;
    background-color: rgba(0, 0, 0, 0);
    outline: none;

    font-family: sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 24px;
    line-height: 33px;
    align-items: center;
    text-align: right;
    color: #56CCF2;
}

.cal-button {
    height: 38px;
    width: 74px;
    border-width: 0;
    border-radius: 5px;
    background-color: transparent;
    outline: none;

    font-family: sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 12px;
    line-height: 16px;
    color: #F2F2F2;

    align-items: center;
    text-align: center;
    transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;  /* Safari */
}

.cal-button:hover {
    box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}

.cal-button:active {
    color: #4F4F4F;
    background: #56CCF2;
}
