*{
    margin: 0;
    padding: 0;
    background-color: rgb(209, 209, 209);
    box-sizing: border-box;
    outline: none;
}

.container{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.Cal{
    display: grid;
    grid-template-columns: repeat(4,70px);
    background-color: rgb(27, 26, 26);
    border-radius: 30px;
    padding: 15px;
    /* box-shadow: inset 5px 5px 12px #ffffff,
                    5px 5px 12px rgba(0, 0, 0, .16); */
}
input{
    grid-column: span 4;
    height: 70px;
    width: 280px;
    background-color: rgb(254, 255, 255);
    box-shadow: inset -5px -5px 12px #ffffff,
                    5px 5px 12px rgba(0, 0, 0, .16);
    border: none;
    border-radius: 30px;
    color: rgb(70, 70, 70);
    font-size: 50px;
    text-align: end;
    margin: auto;
    margin-top: 40px;
    margin-bottom: 30px;
    padding: 20px;
}
button{
    height: 50px;
    width: 50px;
    background-color: grey;
    box-shadow: inset -5px -5px 12px #ffffff,
                    5px 5px 12px rgba(0, 0, 0, .16);
    border-radius: 30px;
    border: none;
    margin: 8px;
    color: white;
    font-size: 25px;
}
.equal{
    width: 50px;
    height: 50px;
    background-color: orange;
    color: black;
    font-size: 25px;
}
.equ{
    width: 50px;
    height: 50px;
    background-color: rgb(213, 213, 213);
    color: black;
    font-size: 25px;
}
.equ:hover{
    background-color: rgb(152, 152, 152);
}

/* Only style the number itself, no background */
.view-counter {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 20px; /* increase size if needed */
    color: black; /* or any visible color */
    font-weight: bold;
    user-select: none;
    z-index: 1000;
    background: none; /* ensure no background */
    padding: 0; /* remove padding */
}


.view-counter:hover {
    transform: scale(1.05);
    opacity: 0.9;
}
