.pico h1, .pico h2, .pico h3, .pico h4, .pico h5, .pico h6 {
    font-family: inherit;
}

@media (max-width: 768px) {
    .pico table {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .pico th,
    .pico td {
        padding: 0.5rem;
        min-width: 100px;
    }

    .pico td:last-child {
        white-space: nowrap;
    }

    .pico td:last-child button,
    .pico td:last-child a[role="button"] {
        margin: 0.2rem;
        padding: 0.3rem 0.5rem;
        font-size: 0.9rem;
        display: inline-block;
        box-sizing: border-box;
        width: auto;
        text-align: center;
    }
}

.pico td:last-child button,
.pico td:last-child a[role="button"] {
    margin: 0.25rem;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    display: inline-block;
    box-sizing: border-box;
}

.pico table {
    border-collapse: collapse;
    margin-bottom: 1rem;
}

.pico .header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.pico .header-wrapper h1 {
  margin: 0;
}

.pico .button-group {
  display: flex;
  gap: 15px;
  margin-left: 20px;
}

.pico .button-group button {
  margin: 0;
  width: auto;
  min-width: 120px;
}

@media (max-width: 600px) {
  .pico .header-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  .pico .button-group {
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
    margin-left: 0;
    gap: 10px;
  }
  .pico .button-group button {
    width: 100%;
  }
}

/* Transactions Modal */

.pico .dataTables_wrapper {
    width: 100%;
    overflow-x: auto;
}

.pico .dataTables_length {
    float: right;
    display: flex;
    align-items: center;
    margin: 0 0 1rem 0;
}

.pico .dataTables_length label {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    margin: 0;
}

.pico .dataTables_length select {
    margin: 0 0.5rem;
}

.pico .dataTables_filter {
    float: left;
    display: flex;
    align-items: center;
    margin: 0 0 1rem 0;
}

.pico .dataTables_filter label {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    margin: 0;
}

.pico .dataTables_filter input {
    margin-left: 0.5rem;
}

.pico #transactionsTable {
    width: 100%;
    margin: 0;
    clear: both;
}

.pico #transactionsTable th,
.pico #transactionsTable td {
    padding: 0.75rem;
}

.pico .dataTables_info {
    float: left;
    margin: 1rem 0 0 0;
}

.pico .dataTables_paginate {
    float: right;
    margin: 1rem 0 0 0;
}

@media (max-width: 600px) {
    .pico .dataTables_length {
        float: none;
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .pico .dataTables_filter {
        float: none;
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .pico .dataTables_length select,
    .pico .dataTables_filter input {
        margin: 0.25rem 0;
        width: 100%;
    }

    .pico #transactionsTable {
        clear: both;
    }

    .pico .dataTables_info {
        float: none;
        margin: 0.5rem 0;
    }

    .pico .dataTables_paginate {
        float: none;
        margin: 0.5rem 0;
        text-align: center;
    }
}

.pico .card-details-container {
    display: flex;
    flex-direction: column;
}

.pico .card-detail-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5em;
    width: 100%;
    align-items: baseline;
}

.pico .card-detail-title {
    font-weight: bold;
    margin-right: 1em;
    text-align: right;
    flex-shrink: 0;
    min-width: fit-content;
}

.pico .card-detail-value {
    text-align: left;
    flex-grow: 1;
}


/* OTP Modal

.pico #otpModal .otp-input-container {
    margin: 1rem 0;
}

.pico #otpModal .otp-input-container label {
    display: block;
    margin-bottom: 0.5rem;
}

.pico #otpModal .otp-response-message {
    padding: 0.75rem;
    margin: 1rem 0;
    border-radius: 4px;
}

.pico #otpModal .otp-response-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.pico #otpModal .otp-response-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

 */
 