/* Pavlice Brigády High-Contrast Modern Theme */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #f8fafc;
    color: #0f172a;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6, .font-heading {
    font-family: 'Outfit', sans-serif;
}

/* Global Icon Sizing Fix: prevents giant raw SVG rendering */
svg:not([class*="w-"]) {
    width: 1.25rem;
    height: 1.25rem;
    max-width: 24px;
    max-height: 24px;
    display: inline-block;
}

/* Radzen Card Custom Styling - Clean Light Theme with High Contrast */
.rz-card {
    background-color: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 1rem !important;
    box-shadow: 0 4px 12px -2px rgba(15, 23, 42, 0.05), 0 2px 6px -1px rgba(15, 23, 42, 0.03) !important;
    color: #0f172a !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rz-card:hover {
    box-shadow: 0 10px 25px -5px rgba(5, 150, 105, 0.12), 0 8px 10px -6px rgba(5, 150, 105, 0.06) !important;
}

/* Radzen Buttons */
.rz-button-primary {
    background-color: #059669 !important;
    border-color: #059669 !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    border-radius: 0.75rem !important;
}

.rz-button-primary:hover {
    background-color: #047857 !important;
    border-color: #047857 !important;
}

.rz-button-secondary {
    background-color: #f1f5f9 !important;
    border-color: #cbd5e1 !important;
    color: #334155 !important;
    font-weight: 600 !important;
    border-radius: 0.75rem !important;
}

.rz-button-secondary:hover {
    background-color: #e2e8f0 !important;
    color: #0f172a !important;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #059669;
}
