#sybilWindow {
    width: 720px;
    height: 450px;
}

.sybil-window-body {
    padding: 12px;
    display: flex;
    gap: 12px;
    flex-grow: 1;
    min-height: 0;
    background: #c0c0c0;
}

.sybil-left-panel {
    width: 250px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sybil-right-panel {
    flex: 1;
    min-width: 0;
}

.sybil-search-container {
    background: #fff;
    border: 2px solid;
    border-color: #808080 #ffffff #ffffff #808080;
    padding: 8px;
    width: 100%;
    box-sizing: border-box;
}

.sybil-search-row {
    font-size: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 8px;
    width: 100%;
}

.sybil-search-row label {
    font-size: 14px;
    font-weight: normal;
    color: #000;
}

.sybil-search-row input {
    width: 100%;
    padding: 4px;
    border: 2px solid;
    border-color: #808080 #ffffff #ffffff #808080;
    font-size: 14px;
    background: #c0c0c0;
    color: #000;
    box-sizing: border-box;
}

.sybil-search-row input:focus {
    outline: none;
    border-color: #000080;
}

.sybil-button-group {
    display: flex;
    gap: 8px;
}

.sybil-button {
    flex: 1;
    font-family: "Win95Sans", sans-serif; 
    background: #c0c0c0;
    border: 2px solid;
    border-color: #dfdfdf #808080 #808080 #dfdfdf;
    padding: 3px 10px;
    font-size: 14px;
    cursor: pointer;
    outline: none;
    min-height: 24px;
}

.sybil-button:active {
    border-color: #808080 #dfdfdf #dfdfdf #808080;
}

.warning-message {
    color: #c00;
    font-size: 12px;
    padding: 8px;
    border: 1px solid #c00;
    background-color: #ffebeb;
}

.sybil-stats-panel {
    background: #fff;
    border: 2px solid;
    border-color: #808080 #ffffff #ffffff #808080;
    padding: 8px;
}

.sybil-stats-header {
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 8px;
    padding: 4px 8px;
    border-bottom: 1px solid #808080;
    color: #000;
}

.sybil-stats-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: #fff;
}

.sybil-stats-content .sybil-stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    background: #c0c0c0;
    padding: 4px 8px;
    border: 2px solid;
    border-color: #808080 #ffffff #ffffff #808080;
}

.sybil-stats-content .sybil-stat-label {
    color: #000;
}

.sybil-stats-content .sybil-stat-value {
    font-weight: bold;
    font-size: 14px;
    color: #000;
}

.sybil-results {
    background: #fff;
    border: 2px solid;
    border-color: #808080 #ffffff #ffffff #808080;
    height: 100%;
    overflow-y: auto;
    padding: 16px;
}

.sybil-welcome {
    padding: 20px;
    text-align: center;
}

.sybil-welcome-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
}

.sybil-welcome-text h3 {
    font-size: 16px;
    margin-bottom: 12px;
}

.sybil-welcome-text p {
    font-size: 14px;
    margin-bottom: 8px;
    color: #808080;
}

.sybil-welcome-text ul {
    text-align: left;
    margin: 8px 0;
    padding-left: 20px;
    color: #808080;
}

.sybil-welcome-text li {
    margin-bottom: 4px;
    font-size: 12px;
}

.sybil-user-info {
    background: #c0c0c0;
    border: 2px solid;
    border-color: #808080 #ffffff #ffffff #808080;
    padding: 16px;
    margin-bottom: 16px;
    width: 100%;
    box-sizing: border-box;
}

.sybil-user-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.sybil-user-avatar {
    width: 48px;
    height: 48px;
    border: 2px solid;
    border-color: #808080 #ffffff #ffffff #808080;
    flex-shrink: 0;
}

.sybil-user-name {
    font-size: 16px;
    font-weight: bold;
}

.sybil-user-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.sybil-user-stats .sybil-stat-item {
    background: #fff;
    border: 2px solid;
    border-color: #808080 #ffffff #ffffff #808080;
    padding: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.sybil-user-stats .sybil-stat-label {
    font-size: 12px;
    color: #808080;
    font-weight: normal;
    margin-bottom: 4px;
}

.sybil-user-stats .sybil-stat-value {
    font-weight: bold;
    font-size: 14px;
    word-break: break-all;
    color: #000;
}

.sybil-status {
    margin-top: 16px;
    padding: 8px;
    text-align: center;
    font-weight: bold;
    background: #fff;
    border: 2px solid;
    border-color: #808080 #ffffff #ffffff #808080;
}

.sybil-status.suspicious {
    background: #ffebeb;
    border: 1px solid #c00;
    color: #c00;
}

.sybil-status.real-user {
    background: #ebffeb;
    border: 1px solid #0c0;
    color: #0c0;
}

.sybil-details {
    margin-top: 12px;
    padding: 8px;
    background: #fff;
    border: 2px solid;
    border-color: #808080 #ffffff #ffffff #808080;
    font-size: 12px;
    line-height: 1.4;
}

.loading {
    text-align: center;
    padding: 20px;
    color: #000;
}

.error {
    color: #c00;
    padding: 20px;
    text-align: center;
}

.sybil-status-bar {
    background: #c0c0c0;
    border-top: 2px solid #808080;
    padding: 4px 8px;
    font-size: 12px;
    display: flex;
    justify-content: space-between;
}