body {
    font-family: 'Roboto', sans-serif;
    background-color: #ffffff;
    margin: 0;
    display: flex;
    justify-content: center;
    padding-top: 20px;
    color: #212121;
}

.main-container {
    width: 100%;
    max-width: 480px;
    padding: 20px;
    box-sizing: border-box;
}

/* Merchant Card */
/* Merchant Card */
.merchant-card {
    background-color: #f5f5f5;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.merchant-icon {
    width: 40px;
    height: 40px;
    background-color: #f06a35;
    /* Orange icon */
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    font-size: 14px;
    margin-right: 15px;
    flex-shrink: 0;
}

.merchant-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.merchant-name {
    font-weight: 600;
    /* Bolder */
    font-size: 17px;
    color: #000;
    margin-bottom: 4px;
}

.card-info {
    font-size: 15px;
    color: #757575;
    letter-spacing: 0.5px;
}

/* List Items */
.transaction-list {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.receipt-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 14px 0;
    /* More vertical padding */
    width: 100%;
}

.item-label {
    color: #888888;
    font-size: 16px;
    /* 16px label */
    font-weight: 400;
    flex-shrink: 0;
    margin-right: 10px;
}

.item-value {
    color: #000;
    font-size: 16px;
    /* 16px value */
    text-align: right;
    font-weight: 400;
    flex-grow: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Specific styling offsets */
.large-value {
    font-size: 19px;
    /* Larger */
    font-weight: 600;
    /* Bold */
}

.mb-bold {
    font-weight: 600;
}

.divider {
    height: 1px;
    background-color: #eeeeee;
    margin: 10px 0;
    width: 100%;
}

/* Edit Controls (Floating) */
.edit-controls {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    color: black;
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 300px;
    border: 1px solid #eee;
}

.edit-controls input {
    border: 1px solid #ddd;
    padding: 6px;
    border-radius: 4px;
    font-size: 14px;
}

.btn-update {
    background-color: #000;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
}

.hide-controls {
    display: none;
}

/* Separator Dot */
.dot-separator {
    color: #bdbdbd;
    /* Light gray */
    font-size: 8px;
    /* Smaller size */
    vertical-align: middle;
    margin: 0 6px;
    /* Spacing */
    position: relative;
    top: -1px;
}