body {
            font-family: Arial, sans-serif;
            margin: 2px;
            padding: 15px;
            display: flex;
            flex-direction: column;
            align-items: center;
            background-color: #fff;
        }


h1,h2,h3{
    margin:3px;
    padding:3px;
}


h4{
    text-align:center;
    color:gray;
    margin:1px;
    font-size:11px;
    padding:1px;
}

h1{color:#ff5f00; }


        .card-container {
            width: 100%;
            max-width: 400px;
            margin: 3px 0;
        }

        .card-image {
            width: 100%;
            border-radius: 10px;
            display: block;
        }

        .transactions {
            width: 100%;
            max-width: 400px;
            margin-top: 20px;
            background-color: #ffffff;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            border-radius: 10px;
            overflow: hidden;
        }

        .transaction-header {
            background-color: #ff5f00;
            color: white;
            padding: 10px;
            font-size: 18px;
            font-weight: bold;
            text-align: center;
        }

        .transaction-list {
            list-style-type: none;
            padding: 0;
        }

        .transaction-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px;
            border-bottom: 1px solid #e0e0e0;
        }

        .transaction-item:last-child {
            border-bottom: none;
        }

        .transaction-date {
            color: #555;
            font-size: 14px;
        }
        
        
        .transaction-description {
            color: #555;
            font-size: 14px;
            max-width: 170px;
        }


        .transaction-amount {
            font-size: 16px;
            font-weight: bold;
        }

.div_link{
    margin:1px;
    padding: 23px;
}

.link{
    color: #ffffff;
    background: #ff5f00;
    padding: 8px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}