/* Custom Styles to complement Tailwind */
.view-section {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Tag Buttons in Customer Form */
.tag-btn {
    border: 1px solid #e5e7eb; /* gray-200 */
    background-color: #ffffff;
    color: #4b5563; /* gray-600 */
    padding: 0.5rem 1rem;
    border-radius: 9999px; /* full rounded */
    font-size: 0.875rem; /* text-sm */
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tag-btn:hover {
    border-color: #0ea5e9; /* primary */
    color: #0ea5e9;
}

.tag-btn.active {
    background-color: #0ea5e9;
    border-color: #0ea5e9;
    color: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(14, 165, 233, 0.2);
}

/* Document specific styling for PDF export */
.document-content {
    /* ensure background is explicitly white for html2pdf */
    background-color: #ffffff !important; 
}

/* Hide delete button when printing/exporting */
@media print {
    .print\:hidden {
        display: none !important;
    }
}
