.infobox {
    width: 100%;
    height: 70px;
    display: flex;
    border-radius: 8px;
    margin: 10px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid;
}

.infobox:hover {
    box-shadow: 0 2px 4px rgba(1, 1, 1, 1);
}

.infoboxicon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 100%;
    font-size: 24px;
    border-top-left-radius: 5px;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 0px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3); 
}

.info-box-icon i {
    align-items: center;
}

.infoboxcontent {

    flex: 1;
    padding: 3px;
    /*height: 100%;*/
    margin-left: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-around;    
    
}

.infoboxtitle {
    width: 100%;
    font-size: 15px;
    font-weight: 600;
    overflow: hidden; 
    text-overflow: ellipsis; 
    white-space: nowrap; 
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1); 
    line-height: 2;   
}

.infoboxamount {
    width: 100%;
    font-size: 18px;
    font-weight: 700;
    overflow: hidden; 
    text-overflow: ellipsis; 
    white-space: nowrap; 
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1); 
    line-height: 2;
    text-align: right;
    align-self: center;

}

.infodescription {
    width: 100%;
    font-size: 10px;
    text-align: center;
    overflow: hidden; 
    white-space: nowrap;
    word-wrap: normal;
    text-overflow: ellipsis; 
    line-height: 1;
    align-self: flex-end;    
}

.center-img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

