/* ============================================================
   PhotoEZ Photography Contracts - Signing & View Page Styles
============================================================ */

.photoez-contract-wrap {
    max-width: 1100px;
    width: 95%;
    margin: 30px auto;
    font-family: Georgia, 'Times New Roman', serif;
    color: #222;
    line-height: 1.7;
}

/* Header */
.photoez-contract-header {
    text-align: center;
    background: #1a1a2e;
    color: #fff;
    padding: 28px 30px;
    border-radius: 10px 10px 0 0;
}
.photoez-contract-header h2 {
    margin: 0 0 6px;
    font-size: 22px;
    color: #fff;
    font-family: Georgia, serif;
}
.photoez-contract-subtitle {
    margin: 0;
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.5px;
}

/* Booking Summary */
.photoez-contract-booking-summary {
    background: #f7f9fb;
    border: 1px solid #dde3ea;
    border-top: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    padding: 0;
}
.photoez-summary-item {
    flex: 1 1 160px;
    padding: 14px 20px;
    border-right: 1px solid #e0e5ea;
    display: flex;
    flex-direction: column;
}
.photoez-summary-item:last-child { border-right: none; }
.photoez-summary-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    color: #888;
    font-family: Arial, sans-serif;
    margin-bottom: 4px;
}
.photoez-summary-value {
    font-size: 15px;
    font-weight: bold;
    color: #1a1a2e;
    font-family: Arial, sans-serif;
}

/* Instructions */
.photoez-contract-instructions {
    font-size: 14px;
    color: #555;
    font-family: Arial, sans-serif;
    margin: 16px 0 10px;
    text-align: center;
}

/* Contract Body */
.photoez-contract-body {
    border: 1px solid #dde3ea;
    border-radius: 6px;
    padding: 30px 36px;
    background: #fff;
    max-height: 520px;
    overflow-y: auto;
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 20px;
    box-shadow: inset 0 2px 6px rgba(0,0,0,0.04);
}
.photoez-contract-body h2,
.photoez-contract-body h3 {
    font-family: Georgia, serif;
    color: #1a1a2e;
}
.photoez-contract-body p { margin-bottom: 12px; }

/* Signature Section */
.photoez-signature-section {
    background: #fff;
    border: 2px solid #1a1a2e;
    border-radius: 10px;
    padding: 28px 30px;
    margin-top: 10px;
}
.photoez-signature-section h3 {
    margin: 0 0 6px;
    font-size: 18px;
    color: #1a1a2e;
    font-family: Georgia, serif;
}
.photoez-sig-instructions {
    margin: 0 0 16px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #555;
}

/* Tab Toggle */
.photoez-sig-toggle {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}
.photoez-sig-tab {
    padding: 9px 22px;
    border: 2px solid #1a1a2e;
    background: #fff;
    color: #1a1a2e;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    font-family: Arial, sans-serif;
    font-weight: 600;
    transition: background 0.18s, color 0.18s;
}
.photoez-sig-tab.active,
.photoez-sig-tab:hover {
    background: #1a1a2e;
    color: #fff;
}

/* Canvas */
.photoez-canvas-wrap {
    border: 2px dashed #b0bec5;
    border-radius: 6px;
    background: #fafcff;
    display: inline-block;
    width: 100%;
    max-width: 600px;
    overflow: hidden;
    cursor: crosshair;
}
#photoez-sig-canvas {
    display: block;
    width: 100%;
    touch-action: none;
}
.photoez-sig-panel-hint {
    font-size: 13px;
    color: #777;
    font-family: Arial, sans-serif;
    margin: 0 0 10px;
}
.photoez-btn-clear {
    background: none;
    border: 1px solid #ccc;
    color: #888;
    padding: 5px 14px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 13px;
    margin-top: 8px;
    font-family: Arial, sans-serif;
}
.photoez-btn-clear:hover { border-color: #999; color: #555; }

/* Typed Signature */
.photoez-typed-sig-input {
    width: 100%;
    max-width: 400px;
    padding: 12px 16px;
    font-size: 18px;
    border: 2px solid #b0bec5;
    border-radius: 6px;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}
.photoez-typed-sig-input:focus {
    outline: none;
    border-color: #1a1a2e;
}
.photoez-typed-preview {
    font-family: 'Brush Script MT', 'Segoe Script', cursive;
    font-size: 38px;
    color: #1a1a6e;
    min-height: 60px;
    margin-top: 12px;
    padding: 8px 16px;
    border-bottom: 2px solid #1a1a2e;
    max-width: 400px;
    word-break: break-word;
}

/* Agreement Checkbox */
.photoez-agreement-check {
    margin: 20px 0 16px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #333;
}
.photoez-agreement-check label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}
.photoez-agreement-check input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    cursor: pointer;
}

/* Error Message */
.photoez-contract-error-msg {
    background: #fff0f0;
    border: 1px solid #f5aeae;
    color: #c0392b;
    padding: 10px 16px;
    border-radius: 6px;
    margin-bottom: 14px;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

/* Submit Button */
.photoez-submit-wrap { text-align: center; margin-top: 10px; }

.photoez-btn {
    display: inline-block;
    padding: 13px 34px;
    background: #1a1a2e;
    color: #fff;
    border: none;
    border-radius: 7px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    font-family: Arial, sans-serif;
    text-decoration: none;
    transition: background 0.18s;
}
.photoez-btn:hover { background: #2d2d5e; color: #fff; }
.photoez-btn:disabled {
    background: #b0bec5;
    cursor: not-allowed;
}
.photoez-btn-outline {
    background: transparent;
    border: 2px solid #1a1a2e;
    color: #1a1a2e;
    margin-left: 12px;
}
.photoez-btn-outline:hover { background: #f0f0f0; color: #1a1a2e; }

.photoez-btn-sign { padding: 15px 50px; font-size: 17px; }

.photoez-legal-note {
    font-size: 12px;
    color: #999;
    text-align: center;
    font-family: Arial, sans-serif;
    margin-top: 16px;
}

/* Confirmation Page */
.photoez-contract-confirmation {
    max-width: 520px;
    margin: 50px auto;
    text-align: center;
    font-family: Arial, sans-serif;
    background: #fff;
    border: 2px solid #1a1a2e;
    border-radius: 12px;
    padding: 50px 40px;
}
.photoez-contract-confirmation-icon { font-size: 60px; margin-bottom: 16px; }
.photoez-contract-confirmation h2 {
    font-size: 26px;
    color: #1a1a2e;
    margin-bottom: 10px;
}
.photoez-contract-confirmation p {
    color: #555;
    font-size: 15px;
    margin-bottom: 10px;
}
.photoez-contract-confirmation-actions { margin-top: 28px; }

/* Already Signed */
.photoez-contract-already-signed {
    max-width: 520px;
    margin: 40px auto;
    text-align: center;
    font-family: Arial, sans-serif;
    background: #f0fff4;
    border: 1px solid #a8d5b5;
    border-radius: 10px;
    padding: 32px;
}

/* Error state */
.photoez-contract-error {
    color: #c0392b;
    font-family: Arial, sans-serif;
    padding: 20px;
    background: #fff0f0;
    border: 1px solid #f5aeae;
    border-radius: 6px;
}

/* View Signed Contract */
.photoez-view-signed .photoez-contract-body {
    max-height: none;
}
.photoez-view-sig-block {
    border: 2px solid #1a1a2e;
    border-radius: 8px;
    padding: 24px 30px;
    margin-top: 24px;
    background: #fafcff;
}
.photoez-view-sig-block h3 {
    margin: 0 0 16px;
    font-family: Georgia, serif;
    color: #1a1a2e;
}
.photoez-sig-table { width: 100%; border-collapse: collapse; }
.photoez-sig-table td { padding: 8px 12px; vertical-align: top; }
.photoez-sig-label { font-weight: bold; width: 140px; font-family: Arial, sans-serif; font-size: 14px; }
.photoez-sig-image-display {
    max-width: 280px;
    max-height: 90px;
    border: 1px solid #ddd;
    padding: 6px;
    background: #fff;
    border-radius: 4px;
}
.photoez-typed-sig-display {
    font-family: 'Brush Script MT', 'Segoe Script', cursive;
    font-size: 32px;
    color: #1a1a6e;
}

/* Admin panel tweaks */
.photoez-contracts-admin .photoez-photographer-tabs { margin-bottom: 16px; }

/* Responsive */
@media (max-width: 600px) {
    .photoez-contract-body { padding: 18px; }
    .photoez-signature-section { padding: 20px 16px; }
    .photoez-contract-header { padding: 20px 18px; border-radius: 8px 8px 0 0; }
    .photoez-summary-item { flex: 1 1 100%; border-right: none; border-bottom: 1px solid #e0e5ea; }
    .photoez-sig-toggle { flex-direction: column; }
    .photoez-btn-sign { width: 100%; padding: 14px; }
    .photoez-contract-confirmation { padding: 30px 20px; }
}

@media print {
    .photoez-contract-header { background: #fff; color: #000; border: 2px solid #000; }
    .photoez-contract-header h2 { color: #000; }
    .photoez-btn { display: none; }
}
