*{
    margin: 0;
    padding: 0;
    font-family: 'poppins' , sans-serif;
    box-sizing: border-box;
}
.container{
    width: 100%;
    min-height: 100vh;
    color: #fff;
    background: linear-gradient(135deg , rgb(176, 2, 127) , rgb(9, 206, 251));
    padding: 10px;
}
.calculator{
    width: 100%;
    max-width: 600px;
    margin-left: 10%;
    margin-top: 10%;
}
.calculator h1{
    font-size: 60px;
}
.calculator h1 span{
    color: #ffff76;
}
.inputbox{
   margin: 40px 0;
   padding: 35px;
   border-radius: 10px;
   background: rgba(254,255, 255, 0.3);
   display: flex;
   align-items: center;
}
.inputbox input{
    flex: 1;
    margin-right: 20px;
    padding: 14px 20px;
    border: 0;
    outline: 0;
    font-size: 18px;
    border-radius: 5px;
    position: relative;

}
.btnn{
    background: #ffff76;
    border: 0;
    outline: 0; 
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
}
.btnnn{
    background: #eded0e;
    border: 2px solid;
    outline: 0; 
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
}
.inputbox input::-webkit-calendar-picker-indicator{
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
    height: auto;
    position: absolute;
    background-position: calc(100%-10px);
    background-size: 30px ;
    cursor: pointer;
}
#result {
    width: 100%; /* Full width */
    height: 30px; /* Height of the bar */
    background-color: #fbf6f6; /* Light grey background color */
    border: 1px solid #000; /* Black border */
    margin: 10px 0; /* Margin for spacing */
    box-sizing: border-box;
    color: #000;
    text-align: center;
    font-size: 20px;
    border-radius: 5px;
    display: none;
}
.res {
    font-weight: bold; /* Bold text for the label */
    margin-bottom: 5px; /* Space between the label and the bar */
    font-size: 1.2em; /* Slightly larger font size */
    color: #0b0101; /* Dark grey text color */
    display: none;
}
#result span{
    color: rgb(241, 48, 14);
}