.server-widget {
    background: rgba(15, 24, 37, 0.6);
    border-radius: 14px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 520px;
    margin: 10px 0;
    font-family: Arial, sans-serif;
    color: #e5edf5;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

/* Ikona CS 1.6 */
.server-icon {
    width: 38px;
    height: 38px;
    background: rgba(15, 24, 37, 0.6);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #8ab4ff;
    font-weight: bold;
}

/* Nazwa serwera */
.server-info {
    flex: 1;
}

.server-name {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 3px;
    white-space: nowrap;
}

/* Pole IP */
.server-ip {
    background: rgba(15, 24, 37, 0.6);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 6px 8px;
    border-radius: 8px;
    font-size: 13px;
    color: #9fb6d1;
    width: 180px;
}

/* Przycisk Połącz */
.server-connect {
    background: #7ffac5;
    padding: 8px 14px;
    border-radius: 8px;
    font-weight: 700;
    color: #0f1825;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

/* hover */
.server-connect:hover {
    background: #9fffe0;
}