.calc-display {
    height: 130px;
    width: 100%;
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 60px;
    gap: 10px;
    padding: 10px;
    box-sizing: border-box;
}

.calc-display-data {
    background-color: #252422;
    border-radius: 8px;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: #505050;
}

.calc-display-data span {
    color: #ffa500;
}

.calc-display-actions {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    gap: 10px;
}

.calc-display-actions button {
    background-color: #252422;
    border: none;
    outline: none;
    padding: 8px;
    border-radius: 4px;
}

.calc-view-time {
    height: 70px;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: #f0f0f0;
}
.calc-view-time .digit,
.calc-view-time .digit-active{
    border: 2px solid #4E4E4E;
    border-radius: 8px;
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    font-weight: bold;
    color: #5e5e5e;
}
.calc-view-time .digit-active {
    color: #ffa500;
    border: 2px solid #ffa500;
}
.calc-keyword {
    min-height: 350px;
}

.btn-invisible {
    outline: none;
    border: none;
    background-color: transparent;
    color: #f0f0f0;
    font-weight: bold;
    font-size: 1.1rem;
}