.cbcs-company-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.cbcs-company-header {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #eee;
}
.cbcs-company-title {
    font-size: 1.8em;
    margin: 0;
    flex: 1;
    color: #1d2327;
}
.cbcs-company-status {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.cbcs-status-active    { background: #d4edda; color: #155724; }
.cbcs-status-dissolved { background: #f8d7da; color: #721c24; }
.cbcs-status-dormant   { background: #fff3cd; color: #856404; }

.cbcs-info-table {
    width: 100%;
    border-collapse: collapse;
}
.cbcs-info-table th,
.cbcs-info-table td {
    padding: 10px 14px;
    text-align: left;
    border-bottom: 1px solid #eee;
    vertical-align: top;
}
.cbcs-info-table th {
    width: 220px;
    color: #646970;
    font-weight: 600;
    background: #f6f7f7;
}
.cbcs-info-table tr:last-child th,
.cbcs-info-table tr:last-child td {
    border-bottom: none;
}
/* Breadcrumbs */
.cbcs-breadcrumbs { margin-bottom: 20px; }
.cbcs-breadcrumbs ol {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
    font-size: 0.9em;
    color: #646970;
}
.cbcs-breadcrumbs li a { color: #2271b1; text-decoration: none; }
.cbcs-breadcrumbs li a:hover { text-decoration: underline; }
.cbcs-sep { color: #c3c4c7; }
/* Search */
.cbcs-search-wrap { position: relative; max-width: 480px; }
.cbcs-search-input {
    width: 100%;
    padding: 10px 16px;
    font-size: 1em;
    border: 2px solid #c3c4c7;
    border-radius: 6px;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s;
}
.cbcs-search-input:focus { border-color: #2271b1; }
.cbcs-autocomplete-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #c3c4c7;
    border-top: none;
    border-radius: 0 0 6px 6px;
    list-style: none;
    margin: 0;
    padding: 0;
    z-index: 9999;
    max-height: 300px;
    overflow-y: auto;
    box-shadow: 0 4px 8px rgba(0,0,0,.1);
}
.cbcs-autocomplete-list li {
    padding: 10px 16px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}
.cbcs-autocomplete-list li:hover,
.cbcs-autocomplete-list li.active { background: #f0f6fc; }
.cbcs-autocomplete-list .cbcs-ac-label { font-weight: 600; color: #1d2327; }
.cbcs-autocomplete-list .cbcs-ac-sub  { font-size: 0.8em; color: #646970; }
