/* Apple-like modern design for Print Cheque plugin */
.pcheque-admin {
    background: #f5f6fa;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    color: #222;
}
.pcheque-container {
    max-width: 900px;
    margin: 40px auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(60,60,60,0.12);
    padding: 32px 40px 40px 40px;
    animation: fadeIn 0.7s cubic-bezier(.4,0,.2,1);
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: none; }
}
.pcheque-form label {
    font-weight: 500;
    margin-bottom: 6px;
    display: block;
}
.pcheque-form input, .pcheque-form select {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 18px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    background: #f9fafb;
    transition: border 0.2s;
}
.pcheque-form input:focus, .pcheque-form select:focus {
    border-color: #0071e3;
    outline: none;
}
.pcheque-preview {
    margin-top: 32px;
    display: flex;
    justify-content: center;
}
.pcheque-cheque {
    width: 8in;
    height: 3.7in;
    background: linear-gradient(120deg, #f7fafc 80%, #e3e9f7 100%);
    border: 2px solid #bfc9d1;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    position: relative;
    padding: 32px 36px 24px 36px;
    font-size: 1.1rem;
    overflow: hidden;
    transition: box-shadow 0.3s;
}
.pcheque-cheque .pcheque-bank {
    font-weight: 700;
    font-size: 1.3rem;
    color: #1a237e;
    margin-bottom: 8px;
}
.pcheque-cheque .pcheque-acpayee {
    position: absolute;
    top: 18px;
    right: 36px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    border: 1px solid #bfc9d1;
    border-radius: 6px;
    padding: 2px 10px;
    background: #f5f6fa;
}
.pcheque-cheque .pcheque-date {
    position: absolute;
    top: 18px;
    right: 140px;
    font-size: 0.95rem;
    color: #333;
}
.pcheque-cheque .pcheque-payee {
    margin-top: 36px;
    font-size: 1.1rem;
    font-weight: 500;
}
.pcheque-cheque .pcheque-amount-box {
    position: absolute;
    right: 36px;
    top: 90px;
    width: 180px;
    height: 38px;
    border: 1.5px solid #bfc9d1;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 1.2rem;
    background: #f9fafb;
    padding-right: 12px;
}
.pcheque-cheque .pcheque-amount-words {
    margin-top: 24px;
    font-size: 1.05rem;
    font-style: italic;
    color: #1a237e;
}
.pcheque-cheque .pcheque-sign {
    position: absolute;
    right: 36px;
    bottom: 32px;
    font-size: 1rem;
    color: #333;
    text-align: right;
}
.pcheque-cheque .pcheque-currency {
    font-size: 1.3rem;
    font-weight: 700;
    margin-right: 6px;
}
.pcheque-print-btn {
    margin-top: 32px;
    background: linear-gradient(90deg, #0071e3 60%, #005bb5 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s, box-shadow 0.2s;
}
.pcheque-print-btn:hover {
    background: linear-gradient(90deg, #005bb5 60%, #0071e3 100%);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
@media print {
    body * { visibility: hidden !important; }
    .pcheque-cheque, .pcheque-cheque * {
        visibility: visible !important;
    }
    .pcheque-cheque {
        position: absolute !important;
        left: 0; top: 0;
        box-shadow: none !important;
        margin: 0 !important;
        width: 8in !important;
        height: 3.7in !important;
        background: #fff !important;
        border: 1.5px solid #000 !important;
        color: #000 !important;
    }
} 