/* 
 * Modern Wallet Styles for Bitcoin and Altcoin Wallets Plugin
 * A professional, modern styling layer that enhances the default wallet UI
 * To disable: Comment out the enqueue in functions.php
 */

/* ==========================================================================
   GLOBAL WALLET CONTAINER
   ========================================================================== */

.dashed-slug-wallets {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.02),
        0 10px 15px -3px rgba(0, 0, 0, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    margin: 24px auto;
    position: relative;
    overflow: hidden;
    max-width: 1200px;
}

.dashed-slug-wallets::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4);
    background-size: 200% 100%;
    animation: gradient-shift 8s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.dashed-slug-wallets.wallets-ready {
    opacity: 1;
}

/* No coins message styling */
.dashed-slug-wallets .no-coins-message {
    display: none;
    text-align: center;
    padding: 40px 20px;
    color: #64748b;
    font-size: 15px;
    font-weight: 500;
}

.dashed-slug-wallets.wallets-ready .no-coins-message {
    display: block;
}

/* Reload button */
.dashed-slug-wallets .wallets-reload-button {
    float: right;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    cursor: pointer;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
}

.dashed-slug-wallets .wallets-reload-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.dashed-slug-wallets.wallets-ready .wallets-reload-button {
    -webkit-animation: none;
    -moz-animation: none;
    animation: none;
}

/* ==========================================================================
   LABELS AND FORM ELEMENTS
   ========================================================================== */

.dashed-slug-wallets label {
    margin-top: 20px;
    display: block;
    width: 100%;
    color: #334155;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.dashed-slug-wallets label input,
.dashed-slug-wallets label select,
.dashed-slug-wallets label textarea {
    display: block;
    width: 100%;
    margin-top: 8px;
    padding: 10px 14px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    background: #ffffff;
    color: #1e293b;
    transition: all 0.2s ease;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.02);
}

.dashed-slug-wallets.withdraw label.amount input,
.dashed-slug-wallets.withdraw label.fee input,
.dashed-slug-wallets.withdraw label.amountAfterFee input,
.dashed-slug-wallets.move label.amount input,
.dashed-slug-wallets.move label.fee input,
.dashed-slug-wallets.move label.amountAfterFee input {
    width: calc(100% - 40px);
}

.dashed-slug-wallets label input:focus,
.dashed-slug-wallets label select:focus,
.dashed-slug-wallets label textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1), inset 0 1px 2px rgba(0, 0, 0, 0.02);
}

.dashed-slug-wallets label input:hover,
.dashed-slug-wallets label select:hover,
.dashed-slug-wallets label textarea:hover {
    border-color: #cbd5e1;
}

.dashed-slug-wallets label textarea {
    resize: vertical;
    min-height: 80px;
    line-height: 1.6;
}

.dashed-slug-wallets label select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 44px;
}

.dashed-slug-wallets label.coin select {
    background-repeat: no-repeat, no-repeat;
    background-size: 20px, 20px;
    background-position: right 12px center, calc(100% - 44px) 50%;
}

/* ==========================================================================
   BALANCE SECTION
   ========================================================================== */

.dashed-slug-wallets.balance label span,
.dashed-slug-wallets.deposit label span,
.dashed-slug-wallets.withdraw label span {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    display: inline-block;
    margin-right: 8px;
}

.dashed-slug-wallets .base-amount,
.dashed-slug-wallets .fiat-amount {
    font-size: 13px;
    text-align: right;
    font-weight: 500;
    list-style: none;
    display: list-item;
    color: #64748b;
    padding: 4px 8px;
    background: rgba(241, 245, 249, 0.5);
    border-radius: 6px;
    margin-left: auto;
    max-width: fit-content;
}

.dashed-slug-wallets .fiat-amount {
    color: #059669;
    font-weight: 600;
}

.dashed-slug-wallets.balance label span[data-bind*="text: currentCoinBalance"],
.dashed-slug-wallets.deposit label span[data-bind*="text: currentCoinBalance"] {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

/* ==========================================================================
   TABLE STYLING
   ========================================================================== */

.dashed-slug-wallets table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 24px;
}

.dashed-slug-wallets table tr,
.dashed-slug-wallets table td {
    border: none;
    border-collapse: collapse;
}

.dashed-slug-wallets table col {
    width: 16.66%;
}

.dashed-slug-wallets.withdraw table col,
.dashed-slug-wallets.move table col {
    width: 16.66%;
}

.dashed-slug-wallets table td {
    vertical-align: top;
    padding: 12px 24px;
}

.dashed-slug-wallets.withdraw table td,
.dashed-slug-wallets.move table td,
.dashed-slug-wallets.transactions table td {
    vertical-align: bottom;
}

.dashed-slug-wallets.withdraw tr:nth-child(6) td,
.dashed-slug-wallets.move tr:nth-child(3) td {
    vertical-align: bottom;
    padding-top: 20px;
}

.dashed-slug-wallets.withdraw tr:nth-child(6) td label,
.dashed-slug-wallets.move tr:nth-child(3) td label {
    min-height: 44px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.dashed-slug-wallets.withdraw tr:nth-child(6) td label input,
.dashed-slug-wallets.withdraw tr:nth-child(6) td label select,
.dashed-slug-wallets.move tr:nth-child(3) td label input,
.dashed-slug-wallets.move tr:nth-child(3) td label select {
    margin-top: auto;
}

.dashed-slug-wallets.withdraw label.extra {
    display: none;
}

.dashed-slug-wallets table .buttons-row {
    text-align: center;
}

/* Transaction table styling */
.dashed-slug-wallets.transactions table {
    font-size: 14px;
    color: #334155;
    display: block;
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    background: #ffffff;
}

.dashed-slug-wallets.transactions thead {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.dashed-slug-wallets.transactions thead th {
    padding: 14px 16px;
    text-align: left;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
    border-bottom: 2px solid #e2e8f0;
}

.dashed-slug-wallets.transactions tbody tr {
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.2s ease;
}

.dashed-slug-wallets.transactions tbody tr:hover {
    background: rgba(59, 130, 246, 0.03);
}

.dashed-slug-wallets.transactions tbody tr:last-child {
    border-bottom: none;
}

.dashed-slug-wallets.transactions tbody td {
    padding: 14px 16px;
}

.dashed-slug-wallets.transactions-rows ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dashed-slug-wallets.transactions-rows li {
    margin-bottom: 16px;
    padding: 20px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.dashed-slug-wallets.transactions-rows li:hover {
    border-color: #3b82f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

.dashed-slug-wallets.transactions-rows li:last-child {
    margin-bottom: 0;
}

.dashed-slug-wallets.transactions-rows .label {
    font-weight: 700;
    color: #334155;
    margin-bottom: 8px;
}

.dashed-slug-wallets.transactions-rows .label span {
    font-weight: 500;
}

.dashed-slug-wallets.transactions-rows li .type,
.dashed-slug-wallets.transactions-rows li .status,
.dashed-slug-wallets.transactions-rows li .from.user,
.dashed-slug-wallets.transactions-rows li .from-user {
    float: left;
    clear: both;
    font-size: 13px;
    color: #64748b;
    margin-right: 8px;
}

.dashed-slug-wallets.transactions-rows li .time,
.dashed-slug-wallets.transactions-rows li .tags,
.dashed-slug-wallets.transactions-rows li .confirmations,
.dashed-slug-wallets.transactions-rows li .retries,
.dashed-slug-wallets.transactions-rows li .to.user,
.dashed-slug-wallets.transactions-rows li .to-user {
    float: right;
    font-size: 13px;
    color: #64748b;
}

.dashed-slug-wallets.transactions-rows li .arrow {
    text-align: center;
    font-size: 18px;
    color: #94a3b8;
    margin: 8px 0;
}

.dashed-slug-wallets.transactions-rows li .amount {
    margin-top: 16px;
    clear: both;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    width: 100%;
    color: #0f172a;
}

.dashed-slug-wallets.transactions-rows li .fee {
    text-align: center;
    width: 100%;
    font-size: 13px;
    color: #64748b;
    margin-top: 4px;
}

.dashed-slug-wallets.transactions-rows li .txid {
    font-size: 11px;
    text-align: center;
    width: 100%;
    font-family: 'Monaco', 'Menlo', 'Courier New', monospace;
    margin-bottom: 12px;
    color: #3b82f6;
    word-break: break-all;
}

.dashed-slug-wallets.transactions-rows li .comment {
    clear: both;
    text-align: left;
    font-family: 'Georgia', serif;
    font-style: italic;
    color: #64748b;
    padding-top: 12px;
    border-top: 1px solid #f1f5f9;
    margin-top: 12px;
}

/* ==========================================================================
   DEPOSIT SECTION
   ========================================================================== */

.dashed-slug-wallets.deposit .qrcode {
    text-align: center;
    margin: 32px auto;
    padding: 24px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    max-width: 300px;
}

.dashed-slug-wallets.deposit input[type=submit] {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.dashed-slug-wallets.deposit input[type=submit]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.dashed-slug-wallets.deposit input[type=submit]:active {
    transform: translateY(0);
}

/* ==========================================================================
   CLIPBOARD COPY BUTTON
   ========================================================================== */

.dashed-slug-wallets .wallets-clipboard-copy {
    width: auto;
    float: right;
    cursor: pointer;
    font-size: 20px;
    margin-top: 8px;
    color: #3b82f6;
    transition: all 0.2s ease;
    padding: 4px;
}

.dashed-slug-wallets .wallets-clipboard-copy:hover {
    color: #2563eb;
    transform: scale(1.1);
}

.dashed-slug-wallets .wallets-clipboard-copy + input {
    clear: right;
}

/* QR code text button */
.dashed-slug-wallets .qrcode-text-btn {
    position: absolute;
    top: 1em;
    right: 2em;
    float: right;
    height: 1.5em;
    width: 1.5em;
    cursor: pointer;
    color: #3b82f6;
    font-size: 24px;
    opacity: 0.7;
    transition: all 0.2s ease;
}

.dashed-slug-wallets .qrcode-text-btn:hover {
    opacity: 1;
    transform: scale(1.1);
}

.dashed-slug-wallets .qrcode-text-btn > input[type=file] {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    opacity: 0;
}

@media only screen and (min-device-width:751px) {
    .dashed-slug-wallets .qrcode-text-btn {
        pointer-events: none;
        overflow: hidden;
        width: 1px;
        height: 1px;
        opacity: 0;
    }
}

.dashed-slug-wallets .qrcode-text {
    vertical-align: middle;
}

/* ==========================================================================
   WITHDRAW SECTION
   ========================================================================== */

.dashed-slug-wallets.withdraw input[type=submit] {
    padding: 14px 32px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.dashed-slug-wallets.withdraw input[type=submit]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.dashed-slug-wallets.withdraw input[type=button] {
    padding: 14px 32px;
    background: #f1f5f9;
    color: #64748b;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dashed-slug-wallets.withdraw input[type=button]:hover {
    background: #e2e8f0;
    border-color: #cbd5e1;
}

.dashed-slug-wallets label.amount .max-button {
    display: inline-block;
    padding: 6px 12px;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
}

.dashed-slug-wallets label.amount .max-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

.dashed-slug-wallets label.amount {
    position: relative;
}

/* Validation message */
.dashed-slug-wallets label .validationMessage {
    display: none;
}

.dashed-slug-wallets .validationMessage {
    font-size: 13px;
    display: inline-block;
    color: #dc2626;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.2);
    padding: 10px 14px;
    border-radius: 8px;
    margin-top: 8px;
    font-weight: 500;
}

.dashed-slug-wallets.withdraw p.validationMessage,
.dashed-slug-wallets.deposit p.validationMessage {
    margin: 12px 0 0 0;
}

/* Zero balances checkbox */
.dashed-slug-wallets .zero-balances input[type=checkbox] {
    width: 18px;
    height: 18px;
    margin: 0 8px 0 0;
    cursor: pointer;
    accent-color: #3b82f6;
}

/* ==========================================================================
   ICON STYLING
   ========================================================================== */

.dashed-slug-wallets .icon img {
    width: 100%;
    max-width: none;
}

.dashed-slug-wallets tbody td.icon {
    max-width: none;
}

.dashed-slug-wallets.deposit.deposit-list tbody td.balance span {
    white-space: nowrap;
}

/* ==========================================================================
   API KEY SECTION
   ========================================================================== */

.dashed-slug-wallets.api-key input[type=button] {
    display: block;
    margin: 1em auto;
    padding: 12px 24px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.dashed-slug-wallets.api-key input[type=button]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

/* ==========================================================================
   RATES SECTION
   ========================================================================== */

.dashed-slug-wallets.rates .rate {
    text-align: right;
    white-space: nowrap;
}

.dashed-slug-wallets.rates tbody .rate {
    font-family: 'Monaco', 'Menlo', 'Courier New', monospace;
    font-size: 14px;
    color: #059669;
    font-weight: 600;
}

/* ==========================================================================
   STATUS COLORS FOR TRANSACTIONS
   ========================================================================== */

.dashed-slug-wallets.transactions tr.done,
.dashed-slug-wallets.transactions-rows li.done {
    border-left: 4px solid #10b981;
}

.dashed-slug-wallets.transactions tr.pending,
.dashed-slug-wallets.transactions-rows li.pending {
    border-left: 4px solid #f59e0b;
}

.dashed-slug-wallets.transactions tr.unconfirmed,
.dashed-slug-wallets.transactions-rows li.unconfirmed {
    border-left: 4px solid #6366f1;
}

.dashed-slug-wallets.transactions tr.failed,
.dashed-slug-wallets.transactions-rows li.failed {
    border-left: 4px solid #ef4444;
}

.dashed-slug-wallets.transactions tr.cancelled,
.dashed-slug-wallets.transactions-rows li.cancelled {
    border-left: 4px solid #94a3b8;
}

/* ==========================================================================
   TEXTONLY VARIANT
   ========================================================================== */

.dashed-slug-wallets.textonly {
    opacity: initial;
    border: initial;
    border-radius: initial;
    padding: initial;
    color: initial;
    font-size: initial;
    box-shadow: initial;
}

/* ==========================================================================
   COIN SPECIFIC STYLING
   ========================================================================== */

.dashed-slug-wallets.fiat-coin label span[data-bind*="text: currentCoinBalance"],
.dashed-slug-wallets.fiat-coin .amount-display {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dashed-slug-wallets.crypto-coin label span[data-bind*="text: currentCoinBalance"],
.dashed-slug-wallets.crypto-coin .amount-display {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

@media (max-width: 768px) {
    .dashed-slug-wallets {
        padding: 20px;
        border-radius: 12px;
        max-width: 100%;
    }

    .dashed-slug-wallets table td {
        padding: 10px 18px;
    }

    .dashed-slug-wallets label {
        margin-top: 16px;
    }

    .dashed-slug-wallets label input,
    .dashed-slug-wallets label select,
    .dashed-slug-wallets label textarea {
        font-size: 14px;
        padding: 10px 14px;
    }

    .dashed-slug-wallets.withdraw label.amount input,
    .dashed-slug-wallets.withdraw label.fee input,
    .dashed-slug-wallets.withdraw label.amountAfterFee input,
    .dashed-slug-wallets.move label.amount input,
    .dashed-slug-wallets.move label.fee input,
    .dashed-slug-wallets.move label.amountAfterFee input {
        width: calc(100% - 30px);
    }

    .dashed-slug-wallets.balance label span[data-bind*="text: currentCoinBalance"],
    .dashed-slug-wallets.deposit label span[data-bind*="text: currentCoinBalance"] {
        font-size: 24px;
    }

    .dashed-slug-wallets .wallets-reload-button {
        width: 32px;
        height: 32px;
    }

    .dashed-slug-wallets.transactions-rows li {
        padding: 16px;
    }

    .dashed-slug-wallets.transactions-rows li .amount {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .dashed-slug-wallets {
        padding: 16px;
        margin: 16px 0;
        max-width: 100%;
    }

    .dashed-slug-wallets table td {
        padding: 8px 14px;
    }

    .dashed-slug-wallets.withdraw label.amount input,
    .dashed-slug-wallets.withdraw label.fee input,
    .dashed-slug-wallets.withdraw label.amountAfterFee input,
    .dashed-slug-wallets.move label.amount input,
    .dashed-slug-wallets.move label.fee input,
    .dashed-slug-wallets.move label.amountAfterFee input {
        width: calc(100% - 20px);
    }

    .dashed-slug-wallets.withdraw tr:nth-child(6) td,
    .dashed-slug-wallets.move tr:nth-child(3) td {
        padding-top: 16px;
    }

    .dashed-slug-wallets.withdraw tr:nth-child(6) td label,
    .dashed-slug-wallets.move tr:nth-child(3) td label {
        min-height: auto;
        display: block;
        flex-direction: initial;
        justify-content: initial;
    }

    .dashed-slug-wallets.withdraw tr:nth-child(6) td label input,
    .dashed-slug-wallets.withdraw tr:nth-child(6) td label select,
    .dashed-slug-wallets.move tr:nth-child(3) td label input,
    .dashed-slug-wallets.move tr:nth-child(3) td label select {
        margin-top: 8px;
    }

    .dashed-slug-wallets.balance label span[data-bind*="text: currentCoinBalance"],
    .dashed-slug-wallets.deposit label span[data-bind*="text: currentCoinBalance"] {
        font-size: 20px;
    }

    .dashed-slug-wallets.transactionsad th,
    .dashed-slug-wallets.transactions tbody td {
        padding: 10px 12px;
        font-size: 12px;
    }
}



@media print {
    .dashed-slug-wallets {
        box-shadow: none;
        border: 1px solid #000;
        background: #fff;
    }

    .dashed-slug-wallets::before {
        display: none;
    }

    .dashed-slug-wallets .wallets-reload-button {
        display: none;
    }
}

/* ==========================================================================
   ACCESSIBILITY
   ========================================================================== */

.dashed-slug-wallets *:focus-visible {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

.dashed-slug-wallets label input:disabled,
.dashed-slug-wallets label select:disabled,
.dashed-slug-wallets label textarea:disabled,
.dashed-slug-wallets input[type=submit]:disabled,
.dashed-slug-wallets input[type=button]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .dashed-slug-wallets {
        border-width: 2px;
    }

    .dashed-slug-wallets label input,
    .dashed-slug-wallets label select,
    .dashed-slug-wallets label textarea {
        border-width: 2px;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .dashed-slug-wallets,
    .dashed-slug-wallets .wallets-reload-button,
    .dashed-slug-wallets label input,
    .dashed-slug-wallets label select,
    .dashed-slug-wallets label textarea,
    .dashed-slug-wallets input[type=submit],
    .dashed-slug-wallets input[type=button],
    .dashed-slug-wallets .wallets-clipboard-copy,
    .dashed-slug-wallets.transactions tbody tr,
    .dashed-slug-wallets.transactions-rows li {
        transition: none;
        animation: none;
    }

    .dashed-slug-wallets::before {
        animation: none;
    }
}
