<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.rma-message {
    border-radius: 8px;
    padding: 16px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    margin: 16px 0;
    /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);*/
    /*transition: transform 0.2s ease, box-shadow 0.2s ease;*/
}

/*info*/
.rma-msg-info {
    background-color: #fefefe;
    border: 1px solid var(--color-grey-light);
    color: var(--color-blue);
}

/*success*/
.rma-msg-success {
    background-color: #e6f4ea;
    border: 1px solid #80c781;
    color: #2e7d32;
}

/*warning*/
.rma-msg-warning {
    background-color: #fff4e5;
    border: 1px solid #ffcc80;
    color: #e65100;
}

/*error*/
.rma-msg-error {
    background-color: #fdecea;
    border: 1px solid #f5c6cb;
    color: #d32f2f;
}

/*.rma-message:hover {*/
/*    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);*/
/*}*/

/*item list*/
.rma-list-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 0 auto;
    max-width: 800px;
    /*padding: 0 16px;*/
}

.rma-list {
    padding-left: 0; /* Remove default padding */
}

.rma-item {
    background-color: #fefefe;
    border: 1px solid var(--color-grey-light);
    border-radius: 5px;
    padding: 20px;
    width: 100%; /* One card per row */
    /*width: calc(50% - 16px); !* Two cards per row *!*/
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease-in-out;
    margin-bottom: 16px;
    cursor: pointer;
}

.rma-item:last-child,
.rma-item p:last-child {
    margin-bottom: 0; /* Remove margin for the last item */
}

.rma-item:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    background-color: var(--color-white);
}

.rma-item.rma-item-open {
    background-color: var(--color-white);
}

.rma-title {
    color: var(--color-blue);
    font-size: 16px;
    line-height: 1.2;
    /*font-weight: bold;*/
    /*margin-bottom: 8px;*/
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    cursor: pointer;
}

.rma-title .rma-row-number {
    width: 5%;
}

.rma-title .rma-id {
    width: 90%;
}

.rma-title .rma-toggle-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    padding: 0;
    margin-left: 10px;
    width: 5%;
}

.rma-toggle-btn:focus {
    outline: 2px solid var(--color-blue);
}

/*item details*/
.rma-details {
    margin-top: 10px;
    padding: 5px 45px 0;
    /*border-top: 1px solid #ddd;*/
    display: none; /* Initially hidden */
}

.rma-item p {
    margin: 6px auto;
    color: var(--color-dark-light);
    font-size: 14px;
    line-height: 1.2;
}

.rma-item-label {
    font-weight: bold;
    /*color: var(--color-blue);*/
}

.rma-item-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.rma-item-detail span {
    display: inline-block;
}

.rma-item strong {
    color: var(--color-blue);
}

/*pagination*/
.rma-list-pagination {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 40px 0 40px 0;
}

.rma-pagination-col {
    display: inline-flex;
    justify-content: center;
    width: 50%;
}

.rma-page-nav-btn {
    width: 50px;
    height: 50px;
    padding: 0;
    color: var(--color-white);
    margin-left: 0;
    border: 0;
    background-color: var(--color-blue);
    font-size: 18px;
    line-height: 18px;
    cursor: pointer;
    border-radius: 5px;
}

/*responsive breakpoints*/
@media (max-width: 768px) {

    .rma-details {
        padding: 2px 34px 0;
    }

}</pre></body></html>