.calc-container {
    width: 360px;
    padding: 20px;
    border-radius: 20px;
    background: #222;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    margin: 0 auto;
}

.calc-info-box {
    width: 100%;
    height: 100px;
    background-color: #333;
    color: white;
    border-radius: 12px;
    text-align: right;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-weight: bold;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.5);
}

.info-box-top-text {
    font-size: 18px;
    opacity: 0.7;
    margin: 0;
    margin-right: 10px;
}

.info-box-bottom-text {
    font-size: 32px;
    margin: 0;
    margin-right: 10px;
}

.calc-button-container {
    display: grid;
    grid-template-columns: repeat(1, 4fr);
    gap: 15px;
    justify-items: center;
}

button {
    width: 70px;
    height: 70px;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
}

.numberButton {
    background-color: #444;
    color: white;
}

.calcButton {
    background-color: #ff9500;
    color: white;
}

button:hover {
    filter: brightness(1.2);
}

button:active {
    transform: scale(0.95);
}

#calc-code-block{
    width: 70%;
    margin: 0 auto;
}

.calc-h2{
    text-align: center;
}
