/* Layout and Typography */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #f0f0f0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.app-header {
    background-color: #ffffff;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ddd;
}

.app-header img {
    max-height: 50px;
    margin-right: 20px;
}

.app-header h1 {
    margin: 0;
    font-size: 1.8em;
    color: #00558c;
}

.app-container {
    max-width: 1200px;
    margin: 20px auto;
    background: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    flex-grow: 1;
}

.app-footer {
    text-align: center;
    padding: 15px;
    background-color: #f8f9fa;
    border-top: 1px solid #e7e7e7;
    font-size: 0.8em;
    color: #6c757d;
    margin-top: auto;
}

.column-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.column {
    flex: 1;
    min-width: 250px;
}

.smart-summary {
    background-color: #e9f5ff;
    border: 1px solid #00558c;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.smart-summary h4 {
    margin-top: 0;
    color: #00558c;
}

.editable-note {
    font-size: 0.8em;
    color: #666;
    margin-left: 5px;
}

.greyed-out {
    opacity: 0.5;
    pointer-events: none;
}

.confidence-marker {
    font-size: 0.8em;
    margin-left: 5px;
}

.confidence-high {
    color: green;
}

.confidence-medium {
    color: orange;
}

.confidence-low {
    color: red;
}
