/*body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}
*/
.line-in-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 300px;
    padding: 15px;
    /* border-radius: 10px; */
    background: linear-gradient(to right, #FFFFFF , #DADADA);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.line-in-card-left {
    flex: 2;
    text-align: left;
    font-size: 12px;
    color: #555;
}

.line-in-card-right {
    flex: 1;
    text-align: right;
    font-size: 10px;
    font-weight: bold;
    color: #000;
}

