body {
    background-color: #f0f4f8;
}
.container-info {
    max-width: 800px;
    margin: 30px auto;
    padding-right: unset;
    padding-left: unset;
    padding: 20px;
}
.t-right {
    text-align: right
}
.text-sm {
  font-size: .875rem;
  line-height: 1.25rem;
}
.t-grey {
    color: #787878;
}
.grid {
  display: grid;
}
.grid-cols-1 {
 grid-template-columns:repeat(1,minmax(0,1fr))
}
.grid-cols-2 {
 grid-template-columns:repeat(2,minmax(0,1fr))
}
.grid-cols-3 {
 grid-template-columns:repeat(3,minmax(0,1fr))
}
.text-\[\#222222\], .text-\[\#222\] {
  --tw-text-opacity: 1;
  color: rgb(34 34 34/var(--tw-text-opacity));
}
.text-xs {
  font-size: .75rem;
  line-height: 1rem;
}
.d-flex {
    display: flex;
}
.header {
    text-align: center;
}
.header h1 {
    color: #333;
    font-size: 24px;
}
.section {
    margin-top: 20px;
    background-color: #fff;
    border-radius: 5px;
    padding: 30px;
}
.section h2 {
    font-size: 18px;
    color: #0056b3;
    margin-right: auto;
    padding: 5px 0;
}
.section-content {
    padding: 7px;
    background-color: #fff;
    border-radius: 5px;
}
.section-content p {
    margin: 5px 0;
}
.payment-amount {
    color: green;
}
.edit-btn {
    text-align: right;
    padding: 8px 12px;
    border: 1px solid #dfdfdf;
    border-radius: 5px;
    cursor: pointer;
}
.edit-btn button {
    padding: 8px 12px;
    background-color: #007bff;
    border: 1px solid #dfdfdf;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
}
.edit-btn button:hover {
    background-color: #0056b3;
}
.accordion-info {
    cursor: pointer;
    padding: 10px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 16px;
    transition: 0.4s;
    border-radius: 5px;
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.accordion-info:hover {
    background-color: #f9fafb;
}
.accordion-info:after {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    content: "";
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 1.25rem;
    transition: transform .2s ease-in-out;
}
.accordion-info.active:after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-180deg);
}
.accordion-info.active {
    background-color: #e7f1ff;
}
.grid.textunderline  {
    border-bottom: 1px solid #dfdfdf;
    padding-bottom: .5rem;
}
.panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    border-radius: 5px;
    margin-top: 5px;
}
.panel p {
    padding: 10px 0;
}
.panel table {
    width: 100%;
    border-collapse: collapse;
}
.panel table, .panel th, .panel td {
    border: 1px solid #ddd;
}
.panel th, .panel td {
    padding: 8px;
    text-align: left;
    min-width: 159px;
}
.panel th {
    background-color: #f2f2f2;
}
.button-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}
.button-info {
    padding: 10px 10px;
    border: none;
    cursor: pointer;
}
.button-white {
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    color: black;
    width: 50%;
    transition: background-color 0.1s ease;
}
.button-blue {
    background-color: #0066cc;
    border-radius: 10px;
    color: white;
    width: 50%;
    transition: background-color 0.1s ease;
}
.button-blue:hover {
    background-color: #3385ff;
}
.mx-4 {
    margin-left: 1rem;
    margin-right: 1rem;
}
.container-success{
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 700px;
    margin: auto;
}
.container-success img {
    height: 190px;
}
.title-success {
    font-size: 24px;
    color: #0056a3;
    margin-bottom: 10px;
    font-weight: bold;
}
.message-success {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
}
.line-success {
    border-bottom: 1px solid #ccc;
    margin: 20px 0;
}
@media (max-width: 768px) {
  .section {
    padding: 11px;
  }
}