/* Ian Hewitt Insurance Brokers Portal Theme */

/* Base Typography */
body, p, td, ul, li, input, textarea, select {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif !important;
    line-height: 1.6;
    color: #1f2937;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #436662;
    margin-bottom: 0.75rem;
}

h1 { font-size: 2.25rem; font-weight: 700; }
h2 { font-size: 1.875rem; font-weight: 600; }
h3 { font-size: 1.5rem; font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 500; }
h5 { font-size: 1.125rem; font-weight: 500; }
h6 { font-size: 1rem; font-weight: 500; }

/* Body Styling */
body {
    background-color: #ffffff;
    margin: 0;
    padding: 0;
}

/* Professional Color Palette */
:root {
    --primary-green: #436662;
    --secondary-green: #33b89A;
    --accent-green: #4dd0b0;
    --light-green: #f0f9ff;
    --white: #ffffff;
    --light-grey: #f8fafc;
    --medium-grey: #e2e8f0;
    --dark-grey: #334155;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --success-green: #33b89A;
    --warning-orange: #f59e0b;
    --error-red: #ef4444;
}

/* Links */
a {
    color: var(--primary-green);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--secondary-green);
    text-decoration: none;
}

/* Professional Layout */
.main-content {
    min-height: calc(100vh - 120px);
    background-color: var(--light-grey);
}