.card{
    background-color: rgba(240, 240, 240, 0.05);
    border-radius: 0px;
    padding: 0px;
    text-align: center;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    /* font-weight: bold; */
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */

    box-shadow: 0 -1px 51px -21px #00abff;
    /* filter: blur(0.5px); */
    /* filter: opacity(0.5); */
    border: 2px solid rgba(88, 185, 255, 0.47);
    /* background-blend-mode: lighten; */
    border-radius: 15px;
}


/* Styling for the smaller cards */
.small-card {
    background-color: rgba(240, 240, 240, 0.05);
    border-radius: 0px; /* Rounded corners */
    padding: 0px;
    text-align: center;
    width: 150px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Light shadow for depth */
}