/* Typography styles for Between The Lines */

/* Base typography */
body {
    font-family: 'Roboto', 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: #202124;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 0.5em;
    line-height: 1.2;
    color: #1a73e8;
}

h1 {
    font-size: 2.5rem;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 2rem;
    letter-spacing: -0.3px;
}

h3 {
    font-size: 1.5rem;
}

/* Page title */
.page-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a73e8;
    position: relative;
}

.page-title:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 3px;
    background-color: #4285f4;
    border-radius: 2px;
}

/* Section title */
.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #202124;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 15px;
}

.section-title:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background-color: #4285f4;
    border-radius: 2px;
}

/* App title */
.app-title {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #4285f4, #34a853);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 0;
    padding: 0;
}

/* View title */
.view-title {
    font-size: 1.2rem;
    font-weight: 500;
    color: #5f6368;
    margin: 0;
    padding: 0;
}

/* Card title */
.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #202124;
    margin-bottom: 0.75rem;
}

/* Text styles */
.text-primary {
    color: #1a73e8;
}

.text-secondary {
    color: #5f6368;
}

.text-success {
    color: #0f9d58;
}

.text-warning {
    color: #f9ab00;
}

.text-danger {
    color: #d93025;
}

.text-small {
    font-size: 0.875rem;
}

.text-large {
    font-size: 1.125rem;
}

.text-bold {
    font-weight: 600;
}

.text-center {
    text-align: center;
}

/* Analysis title enhancements */
.analysis-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a73e8;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.analysis-title i {
    font-size: 1.5rem;
    color: #4285f4;
}

/* Table title improved */
.table-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a73e8;
    margin: 1em 0 0.75em;
    padding-bottom: 0.5em;
    border-bottom: 2px solid #e8eaed;
    display: flex;
    align-items: center;
    gap: 10px;
}

.table-title:before {
    content: "〉";
    color: #4285f4;
    font-weight: 700;
} 