/* List Card Container */
.list-card {

    max-width: 600px;
    margin: 0 auto 0 auto;
    background: #ffffff;
    /* #f2f9f1; */
    /*
    border: 1px solid #ddd;
    border-radius: 8px;
    */
    overflow: hidden;
    /* box-shadow:  4px 8px rgba(0, 0, 0, 0.1); */
}

/* Individual List Item */
.list-item {
    border-bottom: 1px solid #53731f;
    padding: 2px 8px;
}

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

/* Row Styling */
.row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2px;
}

.row-1 .left {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}

.row-2 .left {
    display: flex;
    align-items: center;
}

.row .right {
    text-align: right;
}


.table-container {
    max-width: 100%;
    margin: 20px auto;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.table-header {
    background-color: #282c34;
    color: #fff;
    padding: 10px;
    font-size: 18px;
    text-align: left;
}

table {
    width: 100%;
    border-collapse: collapse;
}

thead th {
    background-color: #f8f8f8;
    color: #333;
    padding: 10px;
    text-align: left;
    border-bottom: 2px solid #ddd;
}

tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

tbody td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.footer {
    background-color: #f8f8f8;
    text-align: right;
    padding: 10px;
    font-weight: bold;
    border-top: 2px solid #ddd;
    position: sticky;
    bottom: 0;
}

.scrollable {
    max-height: 600px;
    overflow-y: auto;
}

@media (max-width: 600px) {

    .total {
        display: none;
    }

    /*
    table,
    thead,
    tbody,
    th,
    td,
    tr {
        display: block;
    }
    */
    /*
    thead {
        display: none;
    }
    */
    /*
    tbody tr {
        margin-bottom: 15px;
        border-bottom: 2px solid #ddd;
    }

    td {
        display: flex;
        justify-content: space-between;
        padding: 10px;
    }

    td:before {
        content: attr(data-label);
        font-weight: bold;
        color: #333;
    }
        */
}

.breadcrumb {
    font-size: 14px;
    color: #6c757d;
    margin: 10px 20px;
}

.breadcrumb a {
    text-decoration: none;
    color: #007bff;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0px 0px 0px;
    background-color: #5a7d22;
    border-bottom: 1px solid #ddd;
    width: 96%;
    padding: 20px;
    margin-left: -20px;

    .header-title {
        font-size: 24px;
        font-weight: bold;
        color: #ffffff;
        margin: 0;
    }

    .header-actions {
        display: flex;
        gap: 10px;
    }

    .header-actions button,
    .header-actions .action {
        display: flex;
        align-items: center;
        gap: 5px;
        border: none;
        background-color: #f8f9fa;
        color: #212529;
        padding: 8px 12px;
        border-radius: 4px;
        font-size: 14px;
        cursor: pointer;
    }

    .header-actions button.publish {
        background-color: #000;
        color: #fff;
        font-weight: bold;
    }

    .header-actions button:hover,
    .header-actions .action:hover {
        background-color: #e2e6ea;
    }

    .header-actions .publish .amount {
        background-color: #444;
        color: #fff;
        padding: 2px 8px;
        border-radius: 4px;
        font-size: 12px;
        font-weight: normal;
    }