/* =====================================================
   JSON to PDF Tool - Additional Styles
   ===================================================== */

/* تنسيق مساحة النص (textarea) */
.json-textarea {
    width: 100%;
    min-height: 300px;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid var(--border, #e5e7eb);
    font-family: 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.5;
    resize: vertical;
    background: var(--bg-light, #f9fafb);
    color: var(--text, #111827);
}

.json-textarea:focus {
    outline: none;
    border-color: var(--primary, #00008B);
    box-shadow: 0 0 0 2px rgba(0, 0, 139, 0.1);
}

.content-area {
    margin-top: 20px;
}

/* Toast notification (مضمنة في tools.css بالفعل، لكن نؤكد) */
.toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1000;
}
.toast.show {
    opacity: 1;
}