/* Investor Pages - Minimal Raw Style */

.investor-page {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: #fff;
    color: #333;
    line-height: 1.5;
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.investor-page h1 {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 10px;
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
}

.investor-page h2 {
    font-size: 18px;
    font-weight: 600;
    margin: 30px 0 15px;
    color: #333;
}

.investor-page h3 {
    font-size: 14px;
    font-weight: 600;
    margin: 20px 0 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #666;
}

.investor-page p {
    margin: 0 0 15px;
    color: #555;
}

.investor-page a {
    color: #0066cc;
}

.investor-page a:hover {
    text-decoration: underline;
}

/* Simple nav */
.investor-nav {
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
}

.investor-nav a {
    margin-right: 20px;
    color: #666;
    text-decoration: none;
}

.investor-nav a:hover,
.investor-nav a.active {
    color: #000;
}

/* Filters */
.investor-filters {
    background: #f5f5f5;
    padding: 15px;
    margin-bottom: 20px;
    font-size: 13px;
}

.investor-filters label {
    display: inline-block;
    margin-right: 15px;
    color: #666;
}

.investor-filters select,
.investor-filters input {
    padding: 5px 8px;
    border: 1px solid #ccc;
    font-size: 13px;
    margin-right: 10px;
}

.investor-filters button {
    padding: 5px 15px;
    background: #333;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 13px;
}

/* Data table */
.investor-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    margin-bottom: 20px;
}

.investor-table th,
.investor-table td {
    padding: 8px 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.investor-table th {
    background: #f9f9f9;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #666;
}

.investor-table tbody tr:hover {
    background: #f5f5f5;
}

.investor-table td.num {
    text-align: right;
    font-family: "SF Mono", Monaco, "Courier New", monospace;
}

/* Score colors */
.score-high { color: #116611; font-weight: 600; }
.score-mid { color: #666; }
.score-low { color: #cc0000; }

/* Tags */
.tag {
    display: inline-block;
    padding: 2px 6px;
    font-size: 10px;
    text-transform: uppercase;
    background: #eee;
    color: #666;
    margin-right: 4px;
}

.tag-high { background: #d4edda; color: #155724; }
.tag-low { background: #f8d7da; color: #721c24; }
.tag-opp { background: #fff3cd; color: #856404; }

/* Stats row */
.stats-row {
    display: flex;
    gap: 40px;
    margin-bottom: 20px;
    font-size: 13px;
}

.stats-row .stat {
    color: #666;
}

.stats-row .stat strong {
    color: #333;
    font-size: 18px;
    display: block;
}

/* Pagination */
.pagination {
    font-size: 13px;
    margin-top: 20px;
}

.pagination a {
    padding: 5px 10px;
    margin-right: 5px;
    border: 1px solid #ddd;
    text-decoration: none;
    color: #333;
}

.pagination a:hover,
.pagination a.current {
    background: #333;
    color: #fff;
    border-color: #333;
}

/* Info boxes */
.info-box {
    background: #f9f9f9;
    border-left: 3px solid #333;
    padding: 15px;
    margin: 20px 0;
    font-size: 13px;
}

.info-box h4 {
    margin: 0 0 10px;
    font-size: 13px;
    font-weight: 600;
}

/* Login prompt */
.login-prompt {
    background: #f5f5f5;
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 20px;
    font-size: 13px;
}

.login-prompt a {
    font-weight: 600;
}

/* Info tooltip */
.info {
    display: inline-block;
    width: 14px;
    height: 14px;
    background: #e5e5e5;
    color: #666;
    border-radius: 50%;
    font-size: 10px;
    font-style: normal;
    text-align: center;
    line-height: 14px;
    cursor: help;
    margin-left: 4px;
    position: relative;
    vertical-align: middle;
}
.info:hover { background: #ccc; }
.info:hover::after {
    content: attr(data-tip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: normal;
    white-space: normal;
    z-index: 100;
    margin-bottom: 5px;
    max-width: 220px;
    text-align: left;
    line-height: 1.4;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.info:hover::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #333;
    margin-bottom: -5px;
}

/* Responsive */
@media (max-width: 768px) {
    .investor-page { padding: 15px; }
    .investor-table { font-size: 12px; }
    .investor-table th, .investor-table td { padding: 6px 8px; }
    .stats-row { flex-wrap: wrap; gap: 20px; }
    .info:hover::after { left: 0; transform: none; }
}
