/**
 * Jurixio PDF Download - Frontend Styles
 */

.jurixio-pdf-download-box {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 25px;
    max-width: 500px;
    margin: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    box-sizing: border-box;
}

.jurixio-pdf-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.jurixio-pdf-icon { font-size: 24px; line-height: 1; }
.jurixio-pdf-header-text { font-size: 20px; font-weight: 600; color: #1a1a1a; }

.jurixio-pdf-title {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.jurixio-pdf-password-box {
    background: #fffbcc;
    border: 1px solid #f0c419;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 20px;
}

.jurixio-pdf-password-label { font-weight: 600; margin-bottom: 10px; color: #333; font-size: 14px; }

.jurixio-pdf-password-row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.jurixio-pdf-password-input {
    flex: 1;
    padding: 10px 12px;
    font-size: 16px;
    font-family: "SF Mono", "Monaco", "Inconsolata", "Roboto Mono", monospace;
    font-weight: 600;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #fff;
    color: #333;
    letter-spacing: 1px;
    min-width: 0;
}

.jurixio-pdf-password-input:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.2);
}

.jurixio-pdf-copy-btn {
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 500;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    white-space: nowrap;
}

.jurixio-pdf-copy-btn:hover { background: #005a87; }
.jurixio-pdf-copy-btn:active { transform: scale(0.98); }

.jurixio-pdf-password-warning { font-size: 12px; color: #856404; font-style: italic; line-height: 1.4; }

.jurixio-pdf-conditions { margin-bottom: 20px; }
.jurixio-pdf-conditions-title { font-weight: 600; color: #333; margin-bottom: 10px; padding-bottom: 8px; border-bottom: 1px solid #e0e0e0; font-size: 14px; }
.jurixio-pdf-conditions-text { 
    font-size: 13px; 
    color: #555; 
    line-height: 1.6; 
    margin: 0;
    padding: 0;
}
.jurixio-pdf-conditions-text p,
.jurixio-pdf-conditions-text .jurixio-pdf-conditions-line { 
    margin: 0; 
    margin-bottom: 8px; 
    padding: 0;
    display: block;
}
.jurixio-pdf-conditions-text p:last-child,
.jurixio-pdf-conditions-text .jurixio-pdf-conditions-line:last-child { 
    margin-bottom: 0; 
}

.jurixio-pdf-accept { margin-bottom: 20px; }
.jurixio-pdf-checkbox-label { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; font-size: 14px; color: #333; user-select: none; line-height: 1.3; }
.jurixio-pdf-checkbox { width: 18px; height: 18px; cursor: pointer; accent-color: #0073aa; margin-top: 2px; flex-shrink: 0; }

.jurixio-pdf-download-action { text-align: center; }
.jurixio-pdf-generation-notice {
    margin-top: 20px !important;
    font-size: 16px !important;
    color: #666 !important;
    font-style: italic !important;
    line-height: 1.2 !important;
}
.jurixio-pdf-success-message {
    margin-top: 15px;
    padding: 12px 20px;
    background: #d1f2eb;
    border: 1px solid #52c9a6;
    border-left: 4px solid #27ae60;
    border-radius: 4px;
    color: #155724;
    font-size: 14px;
    line-height: 1.5;
}
.jurixio-pdf-error-message {
    margin-top: 15px;
    padding: 12px 20px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-left: 4px solid #ef4444;
    border-radius: 4px;
    color: #991b1b;
    font-size: 14px;
    line-height: 1.5;
}

.jurixio-pdf-download-btn {
    display: inline-block;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: #0073aa;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
}

.jurixio-pdf-download-btn:hover:not(.jurixio-pdf-btn-disabled) { background: #005a87; color: #fff; text-decoration: none; }
.jurixio-pdf-download-btn:active:not(.jurixio-pdf-btn-disabled) { transform: scale(0.98); }

.jurixio-pdf-btn-disabled {
    background: #ccc !important;
    cursor: not-allowed !important;
    pointer-events: none;
    color: #666 !important;
}

.jurixio-pdf-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-left: 4px solid #ef4444;
    padding: 15px 20px;
    border-radius: 4px;
    margin: 20px 0;
}

.jurixio-pdf-error p { margin: 0; color: #991b1b; font-size: 14px; }

@media (max-width: 480px) {
    .jurixio-pdf-download-box { padding: 20px 15px; margin: 15px 0; }
    .jurixio-pdf-header-text { font-size: 18px; }
    .jurixio-pdf-password-row { flex-direction: column; }
    .jurixio-pdf-copy-btn { width: 100%; }
    .jurixio-pdf-download-btn { width: 100%; box-sizing: border-box; }
    .jurixio-pdf-checkbox-label { font-size: 13px; }
}

@media print { .jurixio-pdf-download-box { display: none; } }
