/**
 * NFT Maker Frontend Styles
 */

#nft-wallet-address-field {
    margin: 20px 0;
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
}

#nft-wallet-address-field h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #333;
}

#nft-wallet-address-field .form-row-wide {
    margin-bottom: 15px;
}

#nft-wallet-address-field input[type="text"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

#nft-wallet-address-field .description {
    color: #666;
    font-size: 13px;
    margin-top: 5px;
    line-height: 1.5;
}

.nft-order-details {
    margin: 30px 0;
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.nft-order-details h2 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #333;
    font-size: 24px;
}

.nft-order-details p {
    margin: 12px 0;
    line-height: 1.6;
}

.nft-order-details strong {
    color: #333;
    font-weight: 600;
}

.nft-order-details code {
    background: #fff;
    padding: 4px 8px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    word-break: break-all;
    display: inline-block;
    max-width: 100%;
}

